Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
New MineTRS_java
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kiritoausna
New MineTRS_java
Commits
071dd67f
Commit
071dd67f
authored
Nov 23, 2022
by
kiritoausna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2022-11.23 springboot版本更新 2.1.0-2.6.7
parent
671a9325
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
10 deletions
+19
-10
pom.xml
eladmin-common/pom.xml
+5
-0
pom.xml
eladmin-system/pom.xml
+2
-2
WebMonitorPointsServiceImpl.java
...e/gemho/service/web/impl/WebMonitorPointsServiceImpl.java
+2
-4
banner.txt
eladmin-system/src/main/resources/banner.txt
+1
-1
pom.xml
pom.xml
+9
-3
No files found.
eladmin-common/pom.xml
View file @
071dd67f
...
...
@@ -22,5 +22,10 @@
<artifactId>
hutool-all
</artifactId>
<version>
${hutool.version}
</version>
</dependency>
<dependency>
<groupId>
org.hibernate.validator
</groupId>
<artifactId>
hibernate-validator
</artifactId>
<version>
6.2.3.Final
</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
eladmin-system/pom.xml
View file @
071dd67f
...
...
@@ -113,11 +113,11 @@
<version>
2.0
</version>
</dependency>
<!--netty-->
<dependency>
<!--
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.17.Final</version>
</dependency>
</dependency>
-->
<dependency>
<groupId>
org.json
</groupId>
<artifactId>
json
</artifactId>
...
...
eladmin-system/src/main/java/me/zhengjie/gemho/service/web/impl/WebMonitorPointsServiceImpl.java
View file @
071dd67f
...
...
@@ -39,8 +39,6 @@ public class WebMonitorPointsServiceImpl extends ServiceImpl<WebMonitorPointsMap
@Autowired
private
IWebMonitorChartService
iWebMonitorChartService
;
@Autowired
private
IWebMonitorPointsService
webMonitorPointsService
;
@Autowired
private
IWebMonitorLinkService
iWebMonitorLinkService
;
@Autowired
private
WebMonitorChartMapper
webMonitorChartMapper
;
...
...
@@ -107,8 +105,8 @@ public class WebMonitorPointsServiceImpl extends ServiceImpl<WebMonitorPointsMap
//清空监测点信息
QueryWrapper
<
WebMonitorPoints
>
webMonitorPointsQueryWrapper
=
new
QueryWrapper
<>();
webMonitorPointsQueryWrapper
.
eq
(
"chartid"
,
chart
.
getId
());
webMonitorPoints
Service
.
remov
e
(
webMonitorPointsQueryWrapper
);
webMonitorPointsService
.
pchuli
(
webMonitorPoints
);
webMonitorPoints
Mapper
.
delet
e
(
webMonitorPointsQueryWrapper
);
this
.
pchuli
(
webMonitorPoints
);
//清空关联设备
QueryWrapper
<
WebMonitorLink
>
webMonitorLinkQueryWrapper
=
new
QueryWrapper
<>();
webMonitorLinkQueryWrapper
.
in
(
"pointid"
,
guids
);
...
...
eladmin-system/src/main/resources/banner.txt
View file @
071dd67f
...
...
@@ -5,4 +5,4 @@
\______ /\___ >__|_| /___| /\____/
\/ \/ \/ \/
:: Spring Boot :: (v2.1.0.RELEASE)
\ No newline at end of file
:: Spring Boot :: (v2.6.7)
\ No newline at end of file
pom.xml
View file @
071dd67f
...
...
@@ -23,7 +23,7 @@
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
2.
2.10.RELEASE
</version>
<version>
2.
6.7
</version>
</parent>
<properties>
...
...
@@ -36,8 +36,8 @@
<swagger.version>
2.9.2
</swagger.version>
<fastjson.version>
1.2.70
</fastjson.version>
<druid.version>
1.1.24
</druid.version>
<commons-pool2.version>
2.
5.0
</commons-pool2.version>
<mapstruct.version>
1.
3
.1.Final
</mapstruct.version>
<commons-pool2.version>
2.
11.1
</commons-pool2.version>
<mapstruct.version>
1.
4
.1.Final
</mapstruct.version>
</properties>
<dependencies>
...
...
@@ -213,6 +213,12 @@
<artifactId>
yauaa
</artifactId>
<version>
5.23
</version>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
4.13.2
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment