我正在使用Vert.x MongoDB客户端以及Vert.x CodeGen(https://github.com/vert-x3/vertx-codegen)。
这是我的文件的一个例子:
CFBundleVersion
由于我的文档(或实体)的模型用cordova prepare
注释,如何告诉Vert.x我想用哪个字段作为Mongo的{
width: 100%;
min-width : 100%;
height : 30px;
}
?
使用Spring(数据)时,可以使用@DataObject
public class Instrument {
public static final String DB_TABLE = "instruments";
private String id;
private String instrumentId;
private String name;
}
注释实体,并使用注释@DataObject
将该字段用作Mongo的_id
。这可能在Vert.x中吗?
如果没有,是否有转机?
谢谢!
答案 0 :(得分:0)
对于mongoDB,您可以使用http://vertx.io/docs/vertx-mongo-client/java和http://vertx.io/docs/apidocs/io/vertx/core/json/Json.html来读/写jsonObject或string。