Commit 071dd67f authored by kiritoausna's avatar kiritoausna

2022-11.23 springboot版本更新 2.1.0-2.6.7

parent 671a9325
...@@ -22,5 +22,10 @@ ...@@ -22,5 +22,10 @@
<artifactId>hutool-all</artifactId> <artifactId>hutool-all</artifactId>
<version>${hutool.version}</version> <version>${hutool.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.2.3.Final</version>
</dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
...@@ -113,11 +113,11 @@ ...@@ -113,11 +113,11 @@
<version>2.0</version> <version>2.0</version>
</dependency> </dependency>
<!--netty--> <!--netty-->
<dependency> <!-- <dependency>
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
<artifactId>netty-all</artifactId> <artifactId>netty-all</artifactId>
<version>4.1.17.Final</version> <version>4.1.17.Final</version>
</dependency> </dependency>-->
<dependency> <dependency>
<groupId>org.json</groupId> <groupId>org.json</groupId>
<artifactId>json</artifactId> <artifactId>json</artifactId>
......
...@@ -39,8 +39,6 @@ public class WebMonitorPointsServiceImpl extends ServiceImpl<WebMonitorPointsMap ...@@ -39,8 +39,6 @@ public class WebMonitorPointsServiceImpl extends ServiceImpl<WebMonitorPointsMap
@Autowired @Autowired
private IWebMonitorChartService iWebMonitorChartService; private IWebMonitorChartService iWebMonitorChartService;
@Autowired @Autowired
private IWebMonitorPointsService webMonitorPointsService;
@Autowired
private IWebMonitorLinkService iWebMonitorLinkService; private IWebMonitorLinkService iWebMonitorLinkService;
@Autowired @Autowired
private WebMonitorChartMapper webMonitorChartMapper; private WebMonitorChartMapper webMonitorChartMapper;
...@@ -107,8 +105,8 @@ public class WebMonitorPointsServiceImpl extends ServiceImpl<WebMonitorPointsMap ...@@ -107,8 +105,8 @@ public class WebMonitorPointsServiceImpl extends ServiceImpl<WebMonitorPointsMap
//清空监测点信息 //清空监测点信息
QueryWrapper<WebMonitorPoints> webMonitorPointsQueryWrapper = new QueryWrapper<>(); QueryWrapper<WebMonitorPoints> webMonitorPointsQueryWrapper = new QueryWrapper<>();
webMonitorPointsQueryWrapper.eq("chartid", chart.getId()); webMonitorPointsQueryWrapper.eq("chartid", chart.getId());
webMonitorPointsService.remove(webMonitorPointsQueryWrapper); webMonitorPointsMapper.delete(webMonitorPointsQueryWrapper);
webMonitorPointsService.pchuli(webMonitorPoints); this.pchuli(webMonitorPoints);
//清空关联设备 //清空关联设备
QueryWrapper<WebMonitorLink> webMonitorLinkQueryWrapper = new QueryWrapper<>(); QueryWrapper<WebMonitorLink> webMonitorLinkQueryWrapper = new QueryWrapper<>();
webMonitorLinkQueryWrapper.in("pointid", guids); webMonitorLinkQueryWrapper.in("pointid", guids);
......
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
\______ /\___ >__|_| /___| /\____/ \______ /\___ >__|_| /___| /\____/
\/ \/ \/ \/ \/ \/ \/ \/
:: Spring Boot :: (v2.1.0.RELEASE) :: Spring Boot :: (v2.6.7)
\ No newline at end of file \ No newline at end of file
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<parent> <parent>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.10.RELEASE</version> <version>2.6.7</version>
</parent> </parent>
<properties> <properties>
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
<swagger.version>2.9.2</swagger.version> <swagger.version>2.9.2</swagger.version>
<fastjson.version>1.2.70</fastjson.version> <fastjson.version>1.2.70</fastjson.version>
<druid.version>1.1.24</druid.version> <druid.version>1.1.24</druid.version>
<commons-pool2.version>2.5.0</commons-pool2.version> <commons-pool2.version>2.11.1</commons-pool2.version>
<mapstruct.version>1.3.1.Final</mapstruct.version> <mapstruct.version>1.4.1.Final</mapstruct.version>
</properties> </properties>
<dependencies> <dependencies>
...@@ -213,6 +213,12 @@ ...@@ -213,6 +213,12 @@
<artifactId>yauaa</artifactId> <artifactId>yauaa</artifactId>
<version>5.23</version> <version>5.23</version>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment