mongo-client-0.1.0

MongoDb client implementation.

License

License

Categories

Categories

Data Net CLI User Interface
GroupId

GroupId

net.kut3.data
ArtifactId

ArtifactId

mongo-client
Last Version

Last Version

0.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

mongo-client-0.1.0
MongoDb client implementation.
Project URL

Project URL

http://kut3.net/data/mongo-client

Download mongo-client

How to add to project

<!-- https://jarcasting.com/artifacts/net.kut3.data/mongo-client/ -->
<dependency>
    <groupId>net.kut3.data</groupId>
    <artifactId>mongo-client</artifactId>
    <version>0.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/net.kut3.data/mongo-client/
implementation 'net.kut3.data:mongo-client:0.1.0'
// https://jarcasting.com/artifacts/net.kut3.data/mongo-client/
implementation ("net.kut3.data:mongo-client:0.1.0")
'net.kut3.data:mongo-client:jar:0.1.0'
<dependency org="net.kut3.data" name="mongo-client" rev="0.1.0">
  <artifact name="mongo-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='net.kut3.data', module='mongo-client', version='0.1.0')
)
libraryDependencies += "net.kut3.data" % "mongo-client" % "0.1.0"
[net.kut3.data/mongo-client "0.1.0"]

Dependencies

compile (3)

Group / Artifact Type Version
ch.qos.logback : logback-classic jar 1.2.3
net.kut3 : data jar 0.2.0
org.mongodb : mongodb-driver-sync jar 3.10.1

Project Modules

There are no modules declared in this project.

JSON

Maven dependency

<dependency>
   <groupId>net.kut3</groupId>
   <artifactId>json</artifactId>
   <version>0.2.0</version>
</dependency>

Usage

Parsing from a JSON string

You should know exactly the JSON string is a JsonObject or a JsonArray.

// JsonObject   
JsonObject jo = JsonObject.parse("{...}");`  

// JsonArray  
JsonArray ja = JsonArray.parse("[...]");`   

Create new

// JsonObject   
JsonObject jo = new JsonObject();`

// JsonArray  
JsonArray ja = new JsonArray();`

Adapter for Gson

From v0.2.0 and upper

// JsonObject
com.google.gson.JsonObject gsonObj 
            = new com.google.gson.JsonObject();
    
JsonObject jo = new JsonObject(gsonObj);
    

// JsonArray
com.google.gson.JsonArray gsonArr
            = new com.google.gson.JsonArray();
            
JsonArray ja = new JsonArray(gsonArr);

Get and set

  • Use getXXX(String fieldName) methods to get the value of one field.
  • Use set(String fieldName, XXX fieldValue) to set value for a field (upsert)

To Json string

  • Use toString() method.

Loop

  • Use foreach(...) method to iterate fields of a JsonObject or items of a JsonArray.

Get size and empty checking

  • Use size() and isEmpty() methods.

Get all field names of a JsonObject

From v0.2.0 and upper

jo.fieldNames()

Versions

Version
0.1.0