新增注解
parent
7e77b4c0c0
commit
441e362f09
|
@ -10,7 +10,9 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>cloud-common-caffeine</artifactId>
|
||||
|
||||
<description>
|
||||
cloud-common-caffeine caffeine缓存模块
|
||||
</description>
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
|
|
|
@ -10,13 +10,16 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>cloud-common-iotdb</artifactId>
|
||||
|
||||
<description>
|
||||
cloud-common-iotdb 时序数据库模块
|
||||
</description>
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.muyu</groupId>
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
//package com.muyu.common.iotdb;
|
||||
//
|
||||
//import org.springframework.boot.SpringApplication;
|
||||
//import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
//
|
||||
///**
|
||||
// * @Author: 胡杨
|
||||
// * @Name: CloudSystemSaas
|
||||
// * @Description: SaaS系统驱动器
|
||||
// * @CreatedDate: 2024/9/22 上午10:05
|
||||
// * @FilePath: com.muyu.system.saas
|
||||
// */
|
||||
//@SpringBootApplication
|
||||
//public class CloudIotDBApplication {
|
||||
// public static void main(String[] args) {
|
||||
// SpringApplication.run(CloudIotDBApplication.class, args);
|
||||
// }
|
||||
//}
|
|
@ -1,32 +0,0 @@
|
|||
//package com.muyu.common.iotdb;
|
||||
//
|
||||
//
|
||||
//import com.muyu.common.iotdb.config.IotDBConfig;
|
||||
//import lombok.extern.slf4j.Slf4j;
|
||||
//import org.springframework.web.bind.annotation.GetMapping;
|
||||
//import org.springframework.web.bind.annotation.RequestMapping;
|
||||
//import org.springframework.web.bind.annotation.RestController;
|
||||
//
|
||||
//import javax.annotation.Resource;
|
||||
//
|
||||
///**
|
||||
// * 测试控制层
|
||||
// * @Author: 胡杨
|
||||
// * @Name: Test
|
||||
// * @Description:
|
||||
// * @CreatedDate: 2024/9/27 上午10:54
|
||||
// * @FilePath: com.muyu.data.processing.controller
|
||||
// */
|
||||
//@Slf4j
|
||||
//@RestController
|
||||
//@RequestMapping("/Test")
|
||||
//public class TestController {
|
||||
// @Resource
|
||||
// private IotDBConfig iotDBConfig;
|
||||
//
|
||||
// @GetMapping("/insertData")
|
||||
// public void insertData(String deviceId, long time, double value) throws Exception {
|
||||
// String sql = String.format("insert into root.one.%s(timestamp, temperature) values (%d, %f)", deviceId, time, value);
|
||||
// iotDBConfig.iotSession().executeNonQueryStatement(sql);
|
||||
// }
|
||||
//}
|
|
@ -10,7 +10,9 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>cloud-common-kafka</artifactId>
|
||||
|
||||
<description>
|
||||
cloud-common-kafka kafka中间件模块
|
||||
</description>
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
|
|
|
@ -10,7 +10,9 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>cloud-common-rabbit</artifactId>
|
||||
|
||||
<description>
|
||||
cloud-common-rabbit rabbit中间件模块
|
||||
</description>
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
|
@ -32,4 +34,4 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
|
|
@ -10,7 +10,9 @@
|
|||
</parent>
|
||||
|
||||
<artifactId>cloud-common-saas</artifactId>
|
||||
|
||||
<description>
|
||||
cloud-common-saas saas数据源切换模块
|
||||
</description>
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
|
|
|
@ -14,7 +14,7 @@ import java.io.IOException;
|
|||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* 上线时间监听
|
||||
* 上线事件监听
|
||||
* @Author: 胡杨
|
||||
* @Name: GoOnlineRabbitConsumer
|
||||
* @Description: 上线事件
|
||||
|
|
Loading…
Reference in New Issue