腾讯 APIJSON 的 MongoDB 数据库插件,可通过 Maven, Gradle 等远程依赖。
A MongoDB plugin for Tencent APIJSON
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.APIJSON</groupId>
<artifactId>apijson-mongodb</artifactId>
<version>LATEST</version>
</dependency>
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.APIJSON:apijson-mongodb:latest'
}
在你项目继承 AbstractSQLExecutor 的子类重写方法 getValue
Override getValue in your SQLExecutor extends AbstractSQLExecutor
@Override
protected Object getValue(SQLConfig<Long> config, ResultSet rs, ResultSetMetaData rsmd, int tablePosition, JSONObject table, int columnIndex, String lable, Map<String, JSONObject> childMap) throws Exception {
Object v = super.getValue(config, rs, rsmd, tablePosition, table, columnIndex, lable, childMap);
return MongoUtil.getValue(v);
}
See document in MongoUtil and DemoSQLExecutor in APIJSONBoot-MultiDataSource
有问题可以去 Tencent/APIJSON 提 issue
Tencent/APIJSON#36