Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
项目统一框架
amos-boot-biz
Commits
31904068
Commit
31904068
authored
Oct 11, 2022
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改配置文件
parent
2f5fa611
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
46 additions
and
74 deletions
+46
-74
pom.xml
...e/amos-boot-module-biz/amos-boot-module-equip-biz/pom.xml
+0
-15
EquipmentIotMqttProduceConfig.java
...oin/equipmanage/config/EquipmentIotMqttProduceConfig.java
+2
-2
EquipmentIotMqttReceiveConfig.java
...oin/equipmanage/config/EquipmentIotMqttReceiveConfig.java
+2
-2
WebMqttSubscribe.java
...yeejoin/amos/fas/business/action/mq/WebMqttSubscribe.java
+2
-3
application-single.properties
...em-equip/src/main/resources/application-single.properties
+3
-2
application-dev.properties
...-system-fas/src/main/resources/application-dev.properties
+2
-15
application-cluster.properties
...tem-jcs/src/main/resources/application-cluster.properties
+2
-2
application-dev.properties
...-system-jcs/src/main/resources/application-dev.properties
+2
-2
application-single.properties
...stem-jcs/src/main/resources/application-single.properties
+2
-2
application-cluster.properties
...dgebase/src/main/resources/application-cluster.properties
+2
-2
application-dev.properties
...owledgebase/src/main/resources/application-dev.properties
+2
-2
application-single.properties
...edgebase/src/main/resources/application-single.properties
+2
-2
application-cluster.properties
...tdanger/src/main/resources/application-cluster.properties
+2
-2
application-dev.properties
...atentdanger/src/main/resources/application-dev.properties
+3
-3
application-single.properties
...ntdanger/src/main/resources/application-single.properties
+2
-2
application-cluster.properties
...tenance/src/main/resources/application-cluster.properties
+2
-2
application-dev.properties
...maintenance/src/main/resources/application-dev.properties
+2
-2
application-single.properties
...ntenance/src/main/resources/application-single.properties
+2
-2
application-cluster.properties
...-patrol/src/main/resources/application-cluster.properties
+2
-2
application-single.properties
...m-patrol/src/main/resources/application-single.properties
+2
-2
application-cluster.properties
...rvision/src/main/resources/application-cluster.properties
+2
-2
application-dev.properties
...supervision/src/main/resources/application-dev.properties
+2
-2
application-single.properties
...ervision/src/main/resources/application-single.properties
+2
-2
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/pom.xml
View file @
31904068
...
...
@@ -23,21 +23,6 @@
<version>
1.6.3-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.typroject
</groupId>
<artifactId>
tyboot-component-emq
</artifactId>
<version>
1.1.20
</version>
<exclusions>
<exclusion>
<groupId>
org.typroject
</groupId>
<artifactId>
*
</artifactId>
</exclusion>
<exclusion>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-api
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.liquibase
</groupId>
<artifactId>
liquibase-core
</artifactId>
</dependency>
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/config/EquipmentIotMqttProduceConfig.java
View file @
31904068
...
...
@@ -26,10 +26,10 @@ import org.springframework.messaging.MessageHandler;
public
class
EquipmentIotMqttProduceConfig
{
@Value
(
"${emqx.user-name}"
)
@Value
(
"${emqx.
client-
user-name}"
)
private
String
userName
;
@Value
(
"${emqx.password}"
)
@Value
(
"${emqx.
client-
password}"
)
private
String
password
;
@Value
(
"${emqx.broker}"
)
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/config/EquipmentIotMqttReceiveConfig.java
View file @
31904068
...
...
@@ -42,10 +42,10 @@ import java.util.List;
public
class
EquipmentIotMqttReceiveConfig
{
@Value
(
"${emqx.user-name}"
)
@Value
(
"${emqx.
client-
user-name}"
)
private
String
userName
;
@Value
(
"${emqx.password}"
)
@Value
(
"${emqx.
client-
password}"
)
private
String
password
;
@Value
(
"${emqx.broker}"
)
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-fas-biz/src/main/java/com/yeejoin/amos/fas/business/action/mq/WebMqttSubscribe.java
View file @
31904068
...
...
@@ -30,11 +30,10 @@ import org.springframework.messaging.MessageHandler;
@Configuration
@IntegrationComponentScan
public
class
WebMqttSubscribe
{
@Value
(
"${emqx.user-name}"
)
@Value
(
"${emqx.client-user-name}"
)
private
String
userName
;
@Value
(
"${emqx.password}"
)
@Value
(
"${emqx.
client-
password}"
)
private
String
password
;
@Value
(
"${emqx.broker}"
)
...
...
amos-boot-system-equip/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -82,11 +82,12 @@ spring.redis.redissonUrl=172.16.11.20:6379
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
mqtt.scene.host
=
mqtt://172.16.3.35:8083/mqtt
mqtt.client.product.id
=
mqtt
mqtt.topic
=
topic_mqtt
...
...
amos-boot-system-fas/src/main/resources/application-dev.properties
View file @
31904068
...
...
@@ -28,19 +28,6 @@ amos.system.user.password=a1234560
amos.system.user.app-key
=
studio_normalapp_2681691
amos.system.user.product
=
AMOS_STUDIO_WEB
eureka.client.serviceUrl.defaultZone
=
http://172.16.10.72:10001/eureka/
eureka.client.registry-fetch-interval-seconds
=
5
eureka.instance.prefer-ip-address
=
true
...
...
@@ -77,8 +64,8 @@ params.isPush=false
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-jcs/src/main/resources/application-cluster.properties
View file @
31904068
...
...
@@ -51,8 +51,8 @@ elasticsearch.password= 123456
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-jcs/src/main/resources/application-dev.properties
View file @
31904068
...
...
@@ -52,8 +52,8 @@ elasticsearch.password= 123456
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-jcs/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -48,8 +48,8 @@ elasticsearch.password= 123456
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-knowledgebase/src/main/resources/application-cluster.properties
View file @
31904068
...
...
@@ -92,8 +92,8 @@ elasticsearch.password= 123456
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-knowledgebase/src/main/resources/application-dev.properties
View file @
31904068
...
...
@@ -51,8 +51,8 @@ elasticsearch.password= 123456
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-knowledgebase/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -80,8 +80,8 @@ elasticsearch.password= 123456
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-latentdanger/src/main/resources/application-cluster.properties
View file @
31904068
...
...
@@ -125,8 +125,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-latentdanger/src/main/resources/application-dev.properties
View file @
31904068
...
...
@@ -53,7 +53,7 @@ spring.redis.jedis.pool.min-idle=0
spring.redis.timeout
=
1000
#巡检计划定时任务
jobs.cron
=
0 0/
1 22-23
* * ?
jobs.cron
=
0 0/
5 *
* * ?
#邮件配置
#params.mailPush = false
...
...
@@ -90,8 +90,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-latentdanger/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -115,8 +115,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-maintenance/src/main/resources/application-cluster.properties
View file @
31904068
...
...
@@ -82,8 +82,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-maintenance/src/main/resources/application-dev.properties
View file @
31904068
...
...
@@ -54,8 +54,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-maintenance/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -73,8 +73,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-patrol/src/main/resources/application-cluster.properties
View file @
31904068
...
...
@@ -114,8 +114,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-patrol/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -119,8 +119,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-supervision/src/main/resources/application-cluster.properties
View file @
31904068
...
...
@@ -96,8 +96,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-supervision/src/main/resources/application-dev.properties
View file @
31904068
...
...
@@ -55,8 +55,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
amos-boot-system-supervision/src/main/resources/application-single.properties
View file @
31904068
...
...
@@ -81,8 +81,8 @@ linux.img.path = /
emqx.clean-session
=
true
emqx.client-id
=
${spring.application.name}-${random.int[1024,65536]}
emqx.broker
=
tcp://172.16.10.211:2883
emqx.cl
ean
-user-name
=
super
emqx.cl
ean
-password
=
a123456
emqx.cl
ient
-user-name
=
super
emqx.cl
ient
-password
=
a123456
emqx.max-inflight
=
1000
emqx.keep-alive-interval
=
10
...
...
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