Skip to content

MongoCamp/mongodb-driver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-mongo

A small library for easy usage of the mongo-scala-driver.

Version

Scala Version is 2.12.1 / 2.11.8.

Travis

Build Status

Download

Download

Licence

Apache 2 License.

Usage

Define MongoDB Connection and DAO objects for automatic case class conversion.

import java.util.Date import com.sfxcode.nosql.mongo.MongoDAO import com.sfxcode.nosql.mongo.database.DatabaseProvider import org.bson.codecs.configuration.CodecRegistries._ import org.mongodb.scala.bson.ObjectId import org.mongodb.scala.bson.codecs.Macros._ /**  * import mongodb restaurants sample data  */ object RestaurantDatabase { case class Address(street: String, building: String, zipcode: String, coord: List[Double]) case class Grade(date: Date, grade: String, score: Int) case class Restaurant(restaurant_id: String, name: String, borough: String, cuisine: String, grades: List[Grade], address: Address, _id: ObjectId = new ObjectId()) private val registry = fromProviders(classOf[Restaurant], classOf[Address], classOf[Grade]) val database = DatabaseProvider("test", registry) object RestaurantDAO extends MongoDAO[Restaurant](database, "restaurants") } 

Import the database object and execute find and CRUD functions on the DAO object.

 import RestaurantDatabase._ import com.sfxcode.nosql.mongo._ object RestaurantApp extends App { val restaurant: Option[Restaurant] = RestaurantDAO.find("name", "Dj Reynolds Pub And Restaurant") println(restaurant.get.grades) val restaurants: List[Restaurant] = RestaurantDAO.find(Map("address.zipcode" -> "10075", "cuisine" -> "Italian")) restaurants.sortBy(r => r.name).foreach(r => println(r.name)) }