# apijson-iotdb **Repository Path**: APIJSON/apijson-iotdb ## Basic Information - **Project Name**: apijson-iotdb - **Description**: 腾讯 APIJSON 的 IoTDB 物联网数据库插件 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: https://github.com/APIJSON/apijson-iotdb - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-02-01 - **Last Updated**: 2025-04-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: IOT, 物联网, 时序数据库, APIJSON, iotdb ## README # apijson-iotdb [![](https://jitpack.io/v/APIJSON/apijson-iotdb.svg)](https://jitpack.io/#APIJSON/apijson-iotdb) 腾讯 [APIJSON](https://github.com/Tencent/APIJSON) 7.0.3+ 的 IoTDB 数据库插件,可通过 Maven, Gradle 等远程依赖。
An IoTDB plugin for Tencent [APIJSON](https://github.com/Tencent/APIJSON) 7.0.3+ ![image](https://github.com/user-attachments/assets/c12a6170-e78f-40d3-8e3c-30f8a36bb1a5) ![image](https://github.com/user-attachments/assets/920dd1ea-5490-4c1e-8132-7e1f6324f156) ![image](https://github.com/user-attachments/assets/4b65704d-67ee-403b-a1b6-cf1c16e761e0) ## 添加依赖 ## Add Dependency ### Maven #### 1. 在 pom.xml 中添加 JitPack 仓库 #### 1. Add the JitPack repository to pom.xml ```xml jitpack.io https://jitpack.io ``` ![image](https://user-images.githubusercontent.com/5738175/167261814-d75d8fff-0e64-4534-a840-60ef628a8873.png)
#### 2. 在 pom.xml 中添加 apijson-iotdb 依赖 #### 2. Add the apijson-iotdb dependency to pom.xml ```xml com.github.APIJSON apijson-iotdb 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-iotdb 依赖 #### 2. Add the apijson-iotdb dependency in one of your modules(such as `app`) ```gradle dependencies { implementation 'com.github.APIJSON:apijson-iotdb:latest' } ```


## 使用 ## Usage 在你项目继承 AbstractSQLExecutor 的子类重写方法 execute
Override execute in your SQLExecutor extends AbstractSQLExecutor ```java @Override public JSONObject execute(@NotNull SQLConfig config, boolean unknownType) throws Exception { if (config.isIoTDB()) { return InfluxdbUtil.execute(config, null, unknownType); } return super.execute(config, unknownType); } ```
在你项目继承 AbstractSQLConfig 的子类重写方法 execute
Override execute in your SQLConfig extends AbstractSQLConfig ```java @Override public String getTablePath() { return IoTDBUtil.getTablePath(super.getTablePath(), isIoTDB()); } ``` #### 见 [IoTDBUtil](/src/main/java/apijson/iotdb/IoTDBUtil.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 [IoTDBUtil](/src/main/java/apijson/iotdb/IoTDBUtil.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-iotdb