|
@@ -35,9 +35,18 @@ server:
|
|
|
|
|
|
# 日志配置
|
|
|
logging:
|
|
|
+ # 定义全局日志级别,此处可以针对不同包或类设置不同的日志输出级别
|
|
|
level:
|
|
|
+ # 设置com.zkqy包及其子包下的日志级别为debug
|
|
|
com.zkqy: debug
|
|
|
+ # 设置org.springframework包及其子包下的日志级别为warn
|
|
|
org.springframework: warn
|
|
|
+ # 文件日志相关配置
|
|
|
+ file:
|
|
|
+ # 指定日志文件的输出目录
|
|
|
+ # 此处将所有生成的日志文件存储在D:/rz/logs路径下(日志文件必须名为)
|
|
|
+ # logback-spring.xml中可以读取这个配置项(注意:日志配置文件必须叫logback-spring.xml)
|
|
|
+ path: D:/logs
|
|
|
|
|
|
# 用户配置
|
|
|
user:
|
|
@@ -83,7 +92,7 @@ spring:
|
|
|
# 端口,默认为6379
|
|
|
port: 6379
|
|
|
# 数据库索引
|
|
|
- database: 5
|
|
|
+ database: 11
|
|
|
# 密码
|
|
|
password:
|
|
|
# 连接超时时间
|
|
@@ -142,7 +151,7 @@ xss:
|
|
|
urlPatterns: /system/*,/monitor/*,/tool/*
|
|
|
|
|
|
bpm:
|
|
|
- runbpmurl: http://192.168.110.59:8055/system/runbpm/process/productionScheduling
|
|
|
+ runbpmurl: http://192.168.110.83:8055/system/runbpm/process/productionScheduling
|
|
|
|
|
|
script:
|
|
|
- runscripturl: http://192.168.110.59:8055/system/script/execute
|
|
|
+ runscripturl: http://192.168.110.83:8055/system/script/execute
|