腾讯 APIJSON 7.0.3+ 的 IoTDB 数据库插件,可通过 Maven, Gradle 等远程依赖。
An IoTDB plugin for Tencent APIJSON 7.0.3+
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories><dependency> <groupId>com.github.APIJSON</groupId> <artifactId>apijson-iotdb</artifactId> <version>LATEST</version> </dependency>allprojects { repositories { maven { url 'https://jitpack.io' } } }dependencies { implementation 'com.github.APIJSON:apijson-iotdb:latest' }在你项目继承 AbstractSQLExecutor 的子类重写方法 execute
Override execute in your SQLExecutor extends AbstractSQLExecutor
@Override public JSONObject execute(@NotNull SQLConfig<Long> 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
@Override public String getTablePath() { return IoTDBUtil.getTablePath(super.getTablePath(), isIoTDB()); }See document in IoTDBUtil and DemoSQLExecutor in APIJSONBoot-MultiDataSource
有问题可以去 Tencent/APIJSON 提 issue
Tencent/APIJSON#36



