Skip to content

Latest commit

 

History

History
 
 

mongo-examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Vert.x Mongo Client examples

Here you will find examples demonstrating the usage of the Vert.x Mongo Client.

To run this example, you need a running Mongo instance. Once running, you can configure the verticles with the mongo host:

{
    "mongo_uri": "mongodb://localhost:27017",
    "mongo_db" : "test"
}

By default it uses localhost as host. The port is set to 27017.

Once the mongo instance is running, you can launch it using:

# java
vertx run io.vertx.examples.mongo.MongoClientVerticle -cp target/mongo-examples-4.0.0.jar -conf my-mongo-config.json