https://github.com/apijson/apijson-mongodb
腾讯 APIJSON 的 MongoDB 数据库插件。A MongoDB plugin for Tencent APIJSON.
https://github.com/apijson/apijson-mongodb
apijson java mongo mongo-db mongodb mongodb-database nosql nosql-mongodb
Last synced: 3 months ago
JSON representation
腾讯 APIJSON 的 MongoDB 数据库插件。A MongoDB plugin for Tencent APIJSON.
- Host: GitHub
- URL: https://github.com/apijson/apijson-mongodb
- Owner: APIJSON
- License: apache-2.0
- Created: 2024-01-02T12:25:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-12T16:52:03.000Z (4 months ago)
- Last Synced: 2025-01-29T10:13:47.318Z (4 months ago)
- Topics: apijson, java, mongo, mongo-db, mongodb, mongodb-database, nosql, nosql-mongodb
- Language: Java
- Homepage: https://github.com/Tencent/APIJSON
- Size: 12.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# apijson-mongodb [](https://jitpack.io/#APIJSON/apijson-mongodb)
腾讯 [APIJSON](https://github.com/Tencent/APIJSON) 的 MongoDB 数据库插件,可通过 Maven, Gradle 等远程依赖。
A MongoDB plugin for Tencent [APIJSON](https://github.com/Tencent/APIJSON)
## 添加依赖
## Add Dependency### Maven
#### 1. 在 pom.xml 中添加 JitPack 仓库
#### 1. Add the JitPack repository to pom.xml
```xml
jitpack.io
https://jitpack.io
```
#### 2. 在 pom.xml 中添加 apijson-mongodb 依赖
#### 2. Add the apijson-mongodb dependency to pom.xml
```xml
com.github.APIJSON
apijson-mongodb
LATEST
```
https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONBoot-MultiDataSource/pom.xml
### Gradle
#### 1. 在项目根目录 build.gradle 中最后添加 JitPack 仓库
#### 1. Add the JitPack repository in your root build.gradle at the end of repositories
```gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```#### 2. 在项目某个 module 目录(例如 `app`) build.gradle 中添加 apijson-mongodb 依赖
#### 2. Add the apijson-mongodb dependency in one of your modules(such as `app`)
```gradle
dependencies {
implementation 'com.github.APIJSON:apijson-mongodb:latest'
}
```
## 使用
## Usage在你项目继承 AbstractSQLExecutor 的子类重写方法 getValue
Override getValue in your SQLExecutor extends AbstractSQLExecutor
```java
@Override
protected Object getValue(SQLConfig config, ResultSet rs, ResultSetMetaData rsmd, int tablePosition, JSONObject table, int columnIndex, String lable, Map childMap) throws Exception {
Object v = super.getValue(config, rs, rsmd, tablePosition, table, columnIndex, lable, childMap);
return MongoUtil.getValue(v);
}
```#### 见 [MongoUtil](/src/main/java/apijson/mongodb/MongoUtil.java) 的注释及 [APIJSONBoot-MultiDataSource](https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONBoot-MultiDataSource) 的 [DemoSQLExecutor](https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONBoot-MultiDataSource/src/main/java/apijson/demo/DemoSQLExecutor.java)
#### See document in [MongoUtil](/src/main/java/apijson/mongodb/MongoUtil.java) and [DemoSQLExecutor](https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONBoot-MultiDataSource/src/main/java/apijson/demo/DemoSQLExecutor.java) in [APIJSONBoot-MultiDataSource](https://github.com/APIJSON/APIJSON-Demo/blob/master/APIJSON-Java-Server/APIJSONBoot-MultiDataSource)
有问题可以去 Tencent/APIJSON 提 issue
https://github.com/Tencent/APIJSON/issues/36
#### 点右上角 ⭐Star 支持一下,谢谢 ^_^
#### Please ⭐Star this project ^_^
https://github.com/APIJSON/apijson-mongodb