Sfoglia il codice sorgente

合并配制文件

shengyang000 5 anni fa
parent
commit
81c3877a06

+ 5 - 2
csc-szls-business-dev.yml

@@ -1,4 +1,4 @@
1
-hostname: 172.16.0.2 #地址
1
+hostname: 172.16.0.6 #地址
2 2
 spring:
3 3
   # zip配置
4 4
   zipkin:
@@ -36,7 +36,7 @@ spring:
36 36
     driver-class-name: com.mysql.jdbc.Driver
37 37
     username: ENC(b15HSDfvyJp0jr+lHlKQng==)
38 38
     password: ENC(+FEzLSvFIV/MYL/wXCg93ijmLUseYzP3)
39
-    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
39
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls-test?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
40 40
     hikari:
41 41
       minimum-idle: 5            #最小空闲连接数量
42 42
       idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
@@ -106,3 +106,6 @@ minio:
106 106
   endpoint: http://${hostname}:9998  #图片服务器访问地址
107 107
   accesskey: minioAdmin              #账号
108 108
   secretkey: minioAdmin1             #密码
109
+
110
+
111
+ymlconfig: csc-szls-business-dev

+ 108 - 0
csc-szls-business-prod.yml

@@ -0,0 +1,108 @@
1
+hostname: 172.16.0.2 #地址
2
+spring:
3
+  # zip配置
4
+  zipkin:
5
+    #zipkin server的请求地址
6
+    base-url: http://${hostname}:9611
7
+    sender:
8
+      # web 客户端将踪迹日志数据通过网络请求的方式传送到服务端,另外还有配置 # kafka/rabbit 客户端将踪迹日志数据传递到mq进行中转
9
+      type: web
10
+  sleuth:
11
+    sampler:
12
+      # 采样率 1 代表100%全部采集 ,默认0.1 代表10% 的请求踪迹数据会被采集
13
+      probability: 1
14
+  boot:
15
+    admin:
16
+      client:
17
+        url: "http://${hostname}:9610"
18
+        password: password
19
+        username: user
20
+        instance:
21
+          prefer-ip: true
22
+  redis:
23
+    database: 0 #Redis数据库索引(默认为0)
24
+    timeout: 5000ms # 连接超时时间(毫秒)
25
+    host: ${hostname}
26
+    port: 6679
27
+    password: 123456 # Redis服务器连接密码(默认为空)
28
+    jedis:
29
+      pool:
30
+        max-active: 8 # 连接池中的最大连接
31
+        max-wait: -1ms  # 连接池最大阻塞等待时间(使用负值表示没有限制)
32
+        max-idle: 8  # 连接池中的最大空闲连接
33
+        min-idle: 0  # 连
34
+  # mysql配置
35
+  datasource:
36
+    driver-class-name: com.mysql.jdbc.Driver
37
+    username: ENC(b15HSDfvyJp0jr+lHlKQng==)
38
+    password: ENC(+FEzLSvFIV/MYL/wXCg93ijmLUseYzP3)
39
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
40
+    hikari:
41
+      minimum-idle: 5            #最小空闲连接数量
42
+      idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
43
+      maximum-pool-size: 50     #连接池最大连接数,默认是10
44
+      auto-commit: true         #此属性控制从池返回的连接的默认自动提交行为,默认值:true
45
+      pool-name: MyHikariCP9604      #连接池母子
46
+      max-lifetime: 1800000      #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
47
+      connection-timeout: 60000 #数据库连接超时时间,默认30秒,即30000
48
+      connection-test-query: SELECT 1
49
+  # 配置rabbitmq的地址以及用户密码
50
+  rabbitmq:
51
+    host: ${hostname}
52
+    port: 5672
53
+    username: admin
54
+    password: admin
55
+
56
+
57
+mybatis:
58
+  mapper-locations: classpath:/mapper/*Mapper.xml
59
+# 配置mybatis-plus
60
+mybatis-plus:
61
+  # 配置扫描xml
62
+  mapper-locations: classpath:/mapper/*Mapper.xml
63
+  # 实体扫描,多个package用逗号或者分号分隔
64
+  type-aliases-package: com.unissoft.model
65
+
66
+
67
+ribbon:
68
+  ReadTimeout: 10000
69
+  ConnectTimeout: 10000
70
+  MaxAutoRetries: 1
71
+  MaxAutoRetriesNextServer: 2
72
+
73
+#熔断器开启
74
+feign:
75
+  client:
76
+    config:
77
+      default:
78
+        connect-timeout: 9000
79
+        read-timeout: 9000
80
+  hystrix:
81
+    enabled: true
82
+
83
+hystrix:
84
+  command:
85
+    default:
86
+      execution:
87
+        isolation:
88
+          thread:
89
+            timeoutInMilliseconds: 9000
90
+# 暴露监控端点http://localhost:9603/actuator/refresh 手动刷新
91
+management:
92
+  endpoints:
93
+    web:
94
+      exposure:
95
+        include: '*'
96
+  # 2.0开始,actuator默认不开放,所以要设置为开发
97
+  endpoint:
98
+    health:
99
+      show-details: ALWAYS
100
+my-config:
101
+  isUseSecurity: true #是否使用security权限
102
+  projectCode: csc_szls_business #项目编码
103
+  clientId: client_csc_szls_business #客户端id
104
+
105
+minio:
106
+  endpoint: http://${hostname}:9998  #图片服务器访问地址
107
+  accesskey: minioAdmin              #账号
108
+  secretkey: minioAdmin1             #密码

+ 5 - 2
csc-szls-message-dev.yml

@@ -1,4 +1,4 @@
1
-hostname: 172.16.0.2 #地址
1
+hostname: 172.16.0.6 #地址
2 2
 spring:
3 3
   # zip配置
4 4
   zipkin:
@@ -42,7 +42,7 @@ spring:
42 42
     driver-class-name: com.mysql.jdbc.Driver
43 43
     username: ENC(AC7MiPu2X266UaujLxVbnA==)
44 44
     password: ENC(PXh/ZVSBt39v0lYWqfRTFYMKJ2trNwCP)
45
-    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
45
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls-test?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
46 46
     hikari:
47 47
       minimum-idle: 5            #最小空闲连接数量
48 48
       idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
@@ -140,3 +140,6 @@ minio:
140 140
   endpoint: http://${hostname}:9998  #图片服务器访问地址
141 141
   accesskey: minioAdmin              #账号
142 142
   secretkey: minioAdmin1             #密码
143
+
144
+
145
+ymlconfig: csc-szls-message-dev

+ 142 - 0
csc-szls-message-prod.yml

@@ -0,0 +1,142 @@
1
+hostname: 172.16.0.2 #地址
2
+spring:
3
+  # zip配置
4
+  zipkin:
5
+    #zipkin server的请求地址
6
+    base-url: http://${hostname}:9611
7
+    sender:
8
+      # web 客户端将踪迹日志数据通过网络请求的方式传送到服务端,另外还有配置 # kafka/rabbit 客户端将踪迹日志数据传递到mq进行中转
9
+      type: web
10
+  sleuth:
11
+    sampler:
12
+      # 采样率 1 代表100%全部采集 ,默认0.1 代表10% 的请求踪迹数据会被采集
13
+      probability: 1
14
+  boot:
15
+    admin:
16
+      client:
17
+        url: "http://${hostname}:9610"
18
+        password: password
19
+        username: user
20
+        instance:
21
+          prefer-ip: true
22
+  redis:
23
+    database: 0 #Redis数据库索引(默认为0)
24
+    timeout: 5000ms # 连接超时时间(毫秒)
25
+    host: ${hostname}
26
+    port: 6679
27
+    password: 123456 # Redis服务器连接密码(默认为空)
28
+    jedis:
29
+      pool:
30
+        max-active: 8 # 连接池中的最大连接
31
+        max-wait: -1ms  # 连接池最大阻塞等待时间(使用负值表示没有限制)
32
+        max-idle: 8  # 连接池中的最大空闲连接
33
+        min-idle: 0  # 连接池中的最小空闲连接
34
+  servlet:
35
+    multipart:
36
+      #单个文件上传大小
37
+      max-file-size: 10MB
38
+      #总数上传大小
39
+      max-request-size: 100MB
40
+  # mysql配置
41
+  datasource:
42
+    driver-class-name: com.mysql.jdbc.Driver
43
+    username: ENC(AC7MiPu2X266UaujLxVbnA==)
44
+    password: ENC(PXh/ZVSBt39v0lYWqfRTFYMKJ2trNwCP)
45
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
46
+    hikari:
47
+      minimum-idle: 5            #最小空闲连接数量
48
+      idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
49
+      maximum-pool-size: 50     #连接池最大连接数,默认是10
50
+      auto-commit: true         #此属性控制从池返回的连接的默认自动提交行为,默认值:true
51
+      pool-name: MyHikariCP9609      #连接池母子
52
+      max-lifetime: 1800000      #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
53
+      connection-timeout: 60000 #数据库连接超时时间,默认30秒,即30000
54
+      connection-test-query: SELECT 1
55
+
56
+  quartz:
57
+    job-store-type: jdbc #数据库方式
58
+    jdbc:
59
+      initialize-schema: never #不初始化表结构
60
+    properties:
61
+      org:
62
+        quartz:
63
+          scheduler:
64
+            instanceId: AUTO #默认主机名和时间戳生成实例ID,可以是任何字符串,但对于所有调度程序来说,必须是唯一的 对应qrtz_scheduler_state INSTANCE_NAME字段
65
+            #instanceName: clusteredScheduler #quartzScheduler
66
+          jobStore:
67
+            class: org.quartz.impl.jdbcjobstore.JobStoreTX #持久化配置
68
+            driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate #我们仅为数据库制作了特定于数据库的代理
69
+            useProperties: false #以指示JDBCJobStore将JobDataMaps中的所有值都作为字符串,因此可以作为名称 - 值对存储而不是在BLOB列中以其序列化形式存储更多复杂的对象。从长远来看,这是更安全的,因为您避免了将非String类序列化为BLOB的类版本问题。
70
+            tablePrefix: qrtz_  #数据库表前缀
71
+            misfireThreshold: 60000 #在被认为“失火”之前,调度程序将“容忍”一个Triggers将其下一个启动时间通过的毫秒数。默认值(如果您在配置中未输入此属性)为60000(60秒)。
72
+            clusterCheckinInterval: 5000 #设置此实例“检入”*与群集的其他实例的频率(以毫秒为单位)。影响检测失败实例的速度。
73
+            isClustered: true #打开群集功能
74
+          threadPool: #连接池
75
+            class: org.quartz.simpl.SimpleThreadPool
76
+            threadCount: 10
77
+            threadPriority: 5
78
+            threadsInheritContextClassLoaderOfInitializingThread: true
79
+
80
+    # 配置rabbitmq的地址以及用户密码
81
+      rabbitmq:
82
+       host: ${hostname}
83
+       port: 5672
84
+       username: admin
85
+       password: admin
86
+
87
+mybatis:
88
+  mapper-locations: classpath:/mapper/*Mapper.xml
89
+# 配置mybatis-plus
90
+mybatis-plus:
91
+  # 配置扫描xml
92
+  mapper-locations: classpath:/mapper/*Mapper.xml
93
+  # 实体扫描,多个package用逗号或者分号分隔
94
+  type-aliases-package: com.unissoft.model
95
+
96
+
97
+ribbon:
98
+  ReadTimeout: 10000
99
+  ConnectTimeout: 10000
100
+  MaxAutoRetries: 1
101
+  MaxAutoRetriesNextServer: 2
102
+
103
+#熔断器开启
104
+feign:
105
+  client:
106
+    config:
107
+      default:
108
+        connect-timeout: 9000
109
+        read-timeout: 9000
110
+  hystrix:
111
+    enabled: true
112
+
113
+hystrix:
114
+  command:
115
+    default:
116
+      execution:
117
+        isolation:
118
+          thread:
119
+            timeoutInMilliseconds: 9000
120
+# 暴露监控端点http://localhost:9603/actuator/refresh 手动刷新
121
+management:
122
+  endpoints:
123
+    web:
124
+      exposure:
125
+        include: '*'
126
+  # 2.0开始,actuator默认不开放,所以要设置为开发
127
+  endpoint:
128
+    health:
129
+      show-details: ALWAYS
130
+my-config:
131
+  isUseSecurity: true #是否使用security权限
132
+  projectCode: csc-szls-message #项目编码
133
+  clientId: client_csc-szls-message #客户端id
134
+
135
+logging:
136
+  level:
137
+    com.unissoft.mapper: DEBUG  #包路径为mapper文件包路径
138
+
139
+minio:
140
+  endpoint: http://${hostname}:9998  #图片服务器访问地址
141
+  accesskey: minioAdmin              #账号
142
+  secretkey: minioAdmin1             #密码

+ 5 - 3
csc-szls-oauth-dev.yml

@@ -1,4 +1,4 @@
1
-hostname: 172.16.0.2 #地址
1
+hostname: 172.16.0.6 #地址
2 2
 spring:
3 3
   # zip配置
4 4
   zipkin:
@@ -35,7 +35,7 @@ spring:
35 35
     driver-class-name: com.mysql.jdbc.Driver
36 36
     username: ENC(q5wiYYPVP9xyk87kutjk5A==)
37 37
     password: ENC(JYQaiGDZUCrtU/NgO2YYaiUeqOQ1fqkE)
38
-    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
38
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls-test?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
39 39
     hikari:
40 40
       minimum-idle: 5            #最小空闲连接数量
41 41
       idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
@@ -87,4 +87,6 @@ my-config:
87 87
   clientId: client_oauth
88 88
 logging:
89 89
   level:
90
-    com.unissoft.mapper: DEBUG #包路径为mapper文件包路径
90
+    com.unissoft.mapper: DEBUG #包路径为mapper文件包路径
91
+
92
+ymlconfig: csc-szls-oauth-dev

+ 90 - 0
csc-szls-oauth-prod.yml

@@ -0,0 +1,90 @@
1
+hostname: 172.16.0.2 #地址
2
+spring:
3
+  # zip配置
4
+  zipkin:
5
+    #zipkin server的请求地址
6
+    base-url: http://${hostname}:9611
7
+    sender:
8
+      # web 客户端将踪迹日志数据通过网络请求的方式传送到服务端,另外还有配置 # kafka/rabbit 客户端将踪迹日志数据传递到mq进行中转
9
+      type: web
10
+  sleuth:
11
+    sampler:
12
+      # 采样率 1 代表100%全部采集 ,默认0.1 代表10% 的请求踪迹数据会被采集
13
+      probability: 1
14
+  boot:
15
+    admin:
16
+      client:
17
+        url: "http://${hostname}:9610"
18
+        password: password
19
+        username: user
20
+        instance:
21
+          prefer-ip: true
22
+  redis:
23
+    database: 0 #Redis数据库索引(默认为0)
24
+    timeout: 5000ms # 连接超时时间(毫秒)
25
+    host: ${hostname}
26
+    port: 6679
27
+    password: 123456 # Redis服务器连接密码(默认为空)
28
+    jedis:
29
+      pool:
30
+        max-active: 8 # 连接池中的最大连接
31
+        max-wait: -1ms  # 连接池最大阻塞等待时间(使用负值表示没有限制)
32
+        max-idle: 8  # 连接池中的最大空闲连接
33
+        min-idle: 0  # 连接池中的最小空闲连接
34
+  datasource:
35
+    driver-class-name: com.mysql.jdbc.Driver
36
+    username: ENC(q5wiYYPVP9xyk87kutjk5A==)
37
+    password: ENC(JYQaiGDZUCrtU/NgO2YYaiUeqOQ1fqkE)
38
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
39
+    hikari:
40
+      minimum-idle: 5            #最小空闲连接数量
41
+      idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
42
+      maximum-pool-size: 50     #连接池最大连接数,默认是10
43
+      auto-commit: true         #此属性控制从池返回的连接的默认自动提交行为,默认值:true
44
+      pool-name: MyHikariCP9601      #连接池母子
45
+      max-lifetime: 1800000      #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
46
+      connection-timeout: 60000 #数据库连接超时时间,默认30秒,即30000
47
+      connection-test-query: SELECT 1
48
+  # 配置rabbitmq的地址以及用户密码
49
+  rabbitmq:
50
+    host: ${hostname}
51
+    port: 5672
52
+    username: admin
53
+    password: admin
54
+# 暴露监控端点http://localhost:9603/actuator/refresh 手动刷新
55
+management:
56
+  endpoints:
57
+    web:
58
+      exposure:
59
+        include: '*'
60
+  # 2.0开始,actuator默认不开放,所以要设置为开发
61
+  endpoint:
62
+    health:
63
+      show-details: ALWAYS
64
+
65
+#熔断器开启
66
+feign:
67
+  client:
68
+    config:
69
+      default:
70
+        connect-timeout: 9000
71
+        read-timeout: 9000
72
+  hystrix:
73
+    enabled: true
74
+
75
+hystrix:
76
+  command:
77
+    default:
78
+      execution:
79
+        isolation:
80
+          thread:
81
+            timeoutInMilliseconds: 9000
82
+
83
+mybatis:
84
+  mapper-locations: classpath:/mapper/*Mapper.xml
85
+
86
+my-config:
87
+  clientId: client_oauth
88
+logging:
89
+  level:
90
+    com.unissoft.mapper: DEBUG #包路径为mapper文件包路径

+ 5 - 3
csc-szls-system-manage-dev.yml

@@ -1,4 +1,4 @@
1
-hostname: 172.16.0.2 #地址
1
+hostname: 172.16.0.6 #地址
2 2
 spring:
3 3
   # zip配置
4 4
   zipkin:
@@ -42,7 +42,7 @@ spring:
42 42
     driver-class-name: com.mysql.jdbc.Driver
43 43
     username: ENC(cfKxdo7FJB69hLVrmYjrVA==)
44 44
     password: ENC(q8JXHtwSaPdn8ZReP/omxZguoqRHg248)
45
-    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
45
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls-test?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
46 46
     hikari:
47 47
       minimum-idle: 5            #最小空闲连接数量
48 48
       idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
@@ -114,4 +114,6 @@ minio:
114 114
   accesskey: minioAdmin              #账号
115 115
   secretkey: minioAdmin1             #密码
116 116
 
117
-testdemo: to6666666666666999999999
117
+testdemo: to6666666666666999999999
118
+
119
+ymlconfig: csc-szls-system-manage-dev

+ 117 - 0
csc-szls-system-manage-prod.yml

@@ -0,0 +1,117 @@
1
+hostname: 172.16.0.2 #地址
2
+spring:
3
+  # zip配置
4
+  zipkin:
5
+    #zipkin server的请求地址
6
+    base-url: http://${hostname}:9611
7
+    sender:
8
+      # web 客户端将踪迹日志数据通过网络请求的方式传送到服务端,另外还有配置 # kafka/rabbit 客户端将踪迹日志数据传递到mq进行中转
9
+      type: web
10
+  sleuth:
11
+    sampler:
12
+      # 采样率 1 代表100%全部采集 ,默认0.1 代表10% 的请求踪迹数据会被采集
13
+      probability: 1
14
+  boot:
15
+    admin:
16
+      client:
17
+        url: "http://${hostname}:9610"
18
+        password: password
19
+        username: user
20
+        instance:
21
+          prefer-ip: true
22
+  redis:
23
+    database: 0 #Redis数据库索引(默认为0)
24
+    timeout: 5000ms # 连接超时时间(毫秒)
25
+    host: ${hostname}
26
+    port: 6679
27
+    password: 123456 # Redis服务器连接密码(默认为空)
28
+    jedis:
29
+      pool:
30
+        max-active: 8 # 连接池中的最大连接
31
+        max-wait: -1ms  # 连接池最大阻塞等待时间(使用负值表示没有限制)
32
+        max-idle: 8  # 连接池中的最大空闲连接
33
+        min-idle: 0  # 连接池中的最小空闲连接
34
+  servlet:
35
+    multipart:
36
+      #单个文件上传大小
37
+      max-file-size: 10MB
38
+      #总数上传大小
39
+      max-request-size: 100MB
40
+  # mysql配置
41
+  datasource:
42
+    driver-class-name: com.mysql.jdbc.Driver
43
+    username: ENC(cfKxdo7FJB69hLVrmYjrVA==)
44
+    password: ENC(q8JXHtwSaPdn8ZReP/omxZguoqRHg248)
45
+    url: jdbc:mysql://101.36.160.140:21029/csc-szls?characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
46
+    hikari:
47
+      minimum-idle: 5            #最小空闲连接数量
48
+      idle-timeout: 300000       # 空闲连接存活最大时间,默认600000(10分钟)
49
+      maximum-pool-size: 50     #连接池最大连接数,默认是10
50
+      auto-commit: true          #此属性控制从池返回的连接的默认自动提交行为,默认值:true
51
+      pool-name: MyHikariCP9603   #连接池母子
52
+      max-lifetime: 1800000      #此属性控制池中连接的最长生命周期,值0表示无限生命周期,默认1800000即30分钟
53
+      connection-timeout: 60000 #数据库连接超时时间,默认30秒,即30000
54
+      connection-test-query: SELECT 1
55
+  # 配置rabbitmq的地址以及用户密码
56
+  rabbitmq:
57
+    host: ${hostname}
58
+    port: 5672
59
+    username: admin
60
+    password: admin
61
+
62
+
63
+mybatis:
64
+  mapper-locations: classpath:/mapper/*Mapper.xml
65
+# 配置mybatis-plus
66
+mybatis-plus:
67
+  # 配置扫描xml
68
+  mapper-locations: classpath:/mapper/*Mapper.xml
69
+  # 实体扫描,多个package用逗号或者分号分隔
70
+  type-aliases-package: com.unissoft.model
71
+
72
+
73
+ribbon:
74
+  ReadTimeout: 10000
75
+  ConnectTimeout: 10000
76
+  MaxAutoRetries: 1
77
+  MaxAutoRetriesNextServer: 2
78
+
79
+#熔断器开启
80
+feign:
81
+  client:
82
+    config:
83
+      default:
84
+        connect-timeout: 9000
85
+        read-timeout: 9000
86
+  hystrix:
87
+    enabled: true
88
+
89
+hystrix:
90
+  command:
91
+    default:
92
+      execution:
93
+        isolation:
94
+          thread:
95
+            timeoutInMilliseconds: 9000
96
+
97
+# 暴露监控端点http://localhost:9603/actuator/refresh 手动刷新
98
+management:
99
+  endpoints:
100
+    web:
101
+      exposure:
102
+        include: '*'
103
+  # 2.0开始,actuator默认不开放,所以要设置为开发
104
+  endpoint:
105
+    health:
106
+      show-details: ALWAYS
107
+my-config:
108
+  isUseSecurity: true #是否使用security权限
109
+  projectCode: csc-szls-system-manage #项目编码
110
+  clientId: client_csc_szls_system_manage #客户端id
111
+
112
+minio:
113
+  endpoint: http://${hostname}:9998  #图片服务器访问地址
114
+  accesskey: minioAdmin              #账号
115
+  secretkey: minioAdmin1             #密码
116
+
117
+testdemo: to6666666666666999999999

+ 2 - 0
data-dev.yml

@@ -0,0 +1,2 @@
1
+key: value
2
+hostname: 172.16.0.6