Awesome
apijson-mongodb
腾讯 APIJSON 的 MongoDB 数据库插件,可通过 Maven, Gradle 等远程依赖。<br /> A MongoDB plugin for Tencent APIJSON
添加依赖
Add Dependency
Maven
1. 在 pom.xml 中添加 JitPack 仓库
1. Add the JitPack repository to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<br />
2. 在 pom.xml 中添加 apijson-mongodb 依赖
2. Add the apijson-mongodb dependency to pom.xml
<dependency>
<groupId>com.github.APIJSON</groupId>
<artifactId>apijson-mongodb</artifactId>
<version>LATEST</version>
</dependency>
<br />
<br />
<br />
Gradle
1. 在项目根目录 build.gradle 中最后添加 JitPack 仓库
1. Add the JitPack repository in your root build.gradle at the end of repositories
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
<br />
2. 在项目某个 module 目录(例如 app
) build.gradle 中添加 apijson-mongodb 依赖
2. Add the apijson-mongodb dependency in one of your modules(such as app
)
dependencies {
implementation 'com.github.APIJSON:apijson-mongodb:latest'
}
<br />
<br />
<br />
使用
Usage
在你项目继承 AbstractSQLExecutor 的子类重写方法 getValue <br/> 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);
}
见 MongoUtil 的注释及 APIJSONBoot-MultiDataSource 的 DemoSQLExecutor <br />
See document in MongoUtil and DemoSQLExecutor in APIJSONBoot-MultiDataSource
<br /> <br /> <br />有问题可以去 Tencent/APIJSON 提 issue <br /> https://github.com/Tencent/APIJSON/issues/36
<br /><br />