diff --git a/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/BaseApplication.java b/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/BaseApplication.java index ee3c30fe90..c83d8c2fe8 100644 --- a/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/BaseApplication.java +++ b/anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/BaseApplication.java @@ -1,6 +1,7 @@ package com.yxt.anrui.base; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.openfeign.EnableFeignClients; @@ -8,6 +9,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; /** * @author dimengzhe */ +@EnableLoggingClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", "com.yxt.anrui.base" diff --git a/anrui-base/anrui-base-biz/src/main/resources/application.yml b/anrui-base/anrui-base-biz/src/main/resources/application.yml index 34c87c5f37..33c87604c4 100644 --- a/anrui-base/anrui-base-biz/src/main/resources/application.yml +++ b/anrui-base/anrui-base-biz/src/main/resources/application.yml @@ -60,3 +60,12 @@ templateUrl: prefixUrl: http://120.46.131.15:8111/template/ +#配置ApiBoot Logging 日志组件 +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true + + diff --git a/anrui-base/anrui-base-biz/src/main/resources/banner.txt b/anrui-base/anrui-base-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-base/anrui-base-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-base/anrui-base-biz/src/main/resources/logback-spring.xml b/anrui-base/anrui-base-biz/src/main/resources/logback-spring.xml index 294d076074..9303b5381c 100644 --- a/anrui-base/anrui-base-biz/src/main/resources/logback-spring.xml +++ b/anrui-base/anrui-base-biz/src/main/resources/logback-spring.xml @@ -1,50 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/BusCenterApplication.java b/anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/BusCenterApplication.java index 53736970ac..1e5b2cf25f 100644 --- a/anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/BusCenterApplication.java +++ b/anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/BusCenterApplication.java @@ -1,6 +1,7 @@ package com.yxt.anrui.buscenter; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @@ -9,6 +10,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; /** * @author dimengzhe */ +@EnableLoggingClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", "com.yxt.anrui.buscenter" diff --git a/anrui-buscenter/anrui-buscenter-biz/src/main/resources/application.yml b/anrui-buscenter/anrui-buscenter-biz/src/main/resources/application.yml index 2c4328d5ce..69a46e157a 100644 --- a/anrui-buscenter/anrui-buscenter-biz/src/main/resources/application.yml +++ b/anrui-buscenter/anrui-buscenter-biz/src/main/resources/application.yml @@ -2,7 +2,7 @@ spring: application: name: anrui-buscenter profiles: - active: pro + active: devv messages: # 国际化资源文件路径 basename: i18n/messages @@ -53,6 +53,13 @@ ribbon: ReadTimeout: 30000 ConnectTimeout: 30000 +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true + diff --git a/anrui-buscenter/anrui-buscenter-biz/src/main/resources/banner.txt b/anrui-buscenter/anrui-buscenter-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-buscenter/anrui-buscenter-biz/src/main/resources/logback-spring.xml b/anrui-buscenter/anrui-buscenter-biz/src/main/resources/logback-spring.xml index 087f298ccc..7bbc07f6fd 100644 --- a/anrui-buscenter/anrui-buscenter-biz/src/main/resources/logback-spring.xml +++ b/anrui-buscenter/anrui-buscenter-biz/src/main/resources/logback-spring.xml @@ -1,50 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/CrmApplication.java b/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/CrmApplication.java index c9d7087353..9648984fb6 100644 --- a/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/CrmApplication.java +++ b/anrui-crm/anrui-crm-biz/src/main/java/com/yxt/anrui/crm/CrmApplication.java @@ -10,6 +10,7 @@ import org.springframework.scheduling.annotation.EnableScheduling; /** * @author dimengzhe */ +@EnableLoggingClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", "com.yxt.anrui.crm" diff --git a/anrui-crm/anrui-crm-biz/src/main/resources/application.yml b/anrui-crm/anrui-crm-biz/src/main/resources/application.yml index e979a1a3b0..2be18ec679 100644 --- a/anrui-crm/anrui-crm-biz/src/main/resources/application.yml +++ b/anrui-crm/anrui-crm-biz/src/main/resources/application.yml @@ -40,6 +40,13 @@ mybatis-plus: call-setters-on-nulls: true log-impl: org.apache.ibatis.logging.stdout.StdOutImpl +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true + diff --git a/anrui-crm/anrui-crm-biz/src/main/resources/banner.txt b/anrui-crm/anrui-crm-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-crm/anrui-crm-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-crm/anrui-crm-biz/src/main/resources/logback-spring.xml b/anrui-crm/anrui-crm-biz/src/main/resources/logback-spring.xml index c4c6d4d034..af6416bb83 100644 --- a/anrui-crm/anrui-crm-biz/src/main/resources/logback-spring.xml +++ b/anrui-crm/anrui-crm-biz/src/main/resources/logback-spring.xml @@ -1,50 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-fin/anrui-fin-biz/src/main/java/com/yxt/anrui/fin/AnruiFinApplication.java b/anrui-fin/anrui-fin-biz/src/main/java/com/yxt/anrui/fin/AnruiFinApplication.java index 5018991af4..62a305fa32 100644 --- a/anrui-fin/anrui-fin-biz/src/main/java/com/yxt/anrui/fin/AnruiFinApplication.java +++ b/anrui-fin/anrui-fin-biz/src/main/java/com/yxt/anrui/fin/AnruiFinApplication.java @@ -25,6 +25,7 @@ *********************************************************/ package com.yxt.anrui.fin; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @@ -43,6 +44,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; * @version 1.0 * @since 1.0 */ +@EnableLoggingClient @EnableDiscoveryClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", diff --git a/anrui-fin/anrui-fin-biz/src/main/resources/application.yml b/anrui-fin/anrui-fin-biz/src/main/resources/application.yml index 7a0c4e8349..7f40812020 100644 --- a/anrui-fin/anrui-fin-biz/src/main/resources/application.yml +++ b/anrui-fin/anrui-fin-biz/src/main/resources/application.yml @@ -38,4 +38,11 @@ hystrix: #ribbon的超时时间 ribbon: ReadTimeout: 30000 - ConnectTimeout: 30000 \ No newline at end of file + ConnectTimeout: 30000 + +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true \ No newline at end of file diff --git a/anrui-fin/anrui-fin-biz/src/main/resources/banner.txt b/anrui-fin/anrui-fin-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-fin/anrui-fin-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-fin/anrui-fin-biz/src/main/resources/logback-spring.xml b/anrui-fin/anrui-fin-biz/src/main/resources/logback-spring.xml index 1a369b5492..375fae851f 100644 --- a/anrui-fin/anrui-fin-biz/src/main/resources/logback-spring.xml +++ b/anrui-fin/anrui-fin-biz/src/main/resources/logback-spring.xml @@ -1,54 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-flowable/anrui-flowable-biz/src/main/java/com/yxt/anrui/flowable/FlowableApplication.java b/anrui-flowable/anrui-flowable-biz/src/main/java/com/yxt/anrui/flowable/FlowableApplication.java index 81ec6b7f8f..920c5ad7cf 100644 --- a/anrui-flowable/anrui-flowable-biz/src/main/java/com/yxt/anrui/flowable/FlowableApplication.java +++ b/anrui-flowable/anrui-flowable-biz/src/main/java/com/yxt/anrui/flowable/FlowableApplication.java @@ -1,6 +1,7 @@ package com.yxt.anrui.flowable; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @@ -19,6 +20,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; }) @EnableDiscoveryClient @EnableFeignClients(basePackages = {"com.yxt.anrui.portal"}) +@EnableLoggingClient public class FlowableApplication { public static void main(String[] args) { diff --git a/anrui-flowable/anrui-flowable-biz/src/main/resources/application.yml b/anrui-flowable/anrui-flowable-biz/src/main/resources/application.yml index 42fdaed56c..41f4335ab0 100644 --- a/anrui-flowable/anrui-flowable-biz/src/main/resources/application.yml +++ b/anrui-flowable/anrui-flowable-biz/src/main/resources/application.yml @@ -67,3 +67,10 @@ mybatis-plus: call-setters-on-nulls: true log-impl: org.apache.ibatis.logging.stdout.StdOutImpl +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true + diff --git a/anrui-flowable/anrui-flowable-biz/src/main/resources/banner.txt b/anrui-flowable/anrui-flowable-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-flowable/anrui-flowable-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-flowable/anrui-flowable-biz/src/main/resources/logback-spring.xml b/anrui-flowable/anrui-flowable-biz/src/main/resources/logback-spring.xml index f2e1a0e0e6..73e1c20afe 100644 --- a/anrui-flowable/anrui-flowable-biz/src/main/resources/logback-spring.xml +++ b/anrui-flowable/anrui-flowable-biz/src/main/resources/logback-spring.xml @@ -1,106 +1,99 @@ - - - - - - - - - - - - - - - - - - - - ${CONSOLE_LOG_PATTERN} + + + + + + + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + - - - ${log.path}/sys-info.log - + + + ${LOG_PATH}/${APPDIR}/log_error.log - - ${log.path}/sys-info.%d{yyyy-MM-dd}.log - - 60 + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + - - ${log.pattern} + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 - - INFO - + error ACCEPT - DENY - - ${log.path}/sys-error.log - + + + ${LOG_PATH}/${APPDIR}/log_warn.log - - ${log.path}/sys-error.%d{yyyy-MM-dd}.log - - 60 + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + - - ${log.pattern} - + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 - - ERROR - + warn ACCEPT - DENY - - - ${log.path}/sys-user.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - - ${log.path}/sys-user.%d{yyyy-MM-dd}.log - - 60 + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + - - ${log.pattern} + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + info + ACCEPT + DENY + - - - - - - - - + + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + - - - - + + + + + + + + + + + + + + + - - - - \ No newline at end of file diff --git a/anrui-portal/anrui-portal-biz/src/main/java/com/yxt/anrui/portal/PortalApplication.java b/anrui-portal/anrui-portal-biz/src/main/java/com/yxt/anrui/portal/PortalApplication.java index 95b7f3cf5f..81825ae658 100644 --- a/anrui-portal/anrui-portal-biz/src/main/java/com/yxt/anrui/portal/PortalApplication.java +++ b/anrui-portal/anrui-portal-biz/src/main/java/com/yxt/anrui/portal/PortalApplication.java @@ -1,6 +1,7 @@ package com.yxt.anrui.portal; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @@ -9,6 +10,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; /** * @author dimengzhe */ +@EnableLoggingClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", "com.yxt.anrui.portal" diff --git a/anrui-portal/anrui-portal-biz/src/main/resources/application.yml b/anrui-portal/anrui-portal-biz/src/main/resources/application.yml index bf4df61b97..0f352edc10 100644 --- a/anrui-portal/anrui-portal-biz/src/main/resources/application.yml +++ b/anrui-portal/anrui-portal-biz/src/main/resources/application.yml @@ -56,6 +56,12 @@ hystrix: ribbon: ReadTimeout: 30000 ConnectTimeout: 30000 +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true diff --git a/anrui-portal/anrui-portal-biz/src/main/resources/banner.txt b/anrui-portal/anrui-portal-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-portal/anrui-portal-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-portal/anrui-portal-biz/src/main/resources/logback-spring.xml b/anrui-portal/anrui-portal-biz/src/main/resources/logback-spring.xml index f904daefef..fef7e8e8e0 100644 --- a/anrui-portal/anrui-portal-biz/src/main/resources/logback-spring.xml +++ b/anrui-portal/anrui-portal-biz/src/main/resources/logback-spring.xml @@ -1,50 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/RiskCenterApplication.java b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/RiskCenterApplication.java index 6546639b6a..3675b23b6e 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/RiskCenterApplication.java +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/java/com/yxt/anrui/riskcenter/RiskCenterApplication.java @@ -1,6 +1,7 @@ package com.yxt.anrui.riskcenter; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @@ -9,6 +10,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; /** * @author dimengzhe */ +@EnableLoggingClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", "com.yxt.anrui.riskcenter" diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/application.yml b/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/application.yml index 037701b698..5ed76ddd17 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/application.yml +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/application.yml @@ -38,6 +38,13 @@ mybatis-plus: call-setters-on-nulls: true log-impl: org.apache.ibatis.logging.stdout.StdOutImpl +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true + diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/banner.txt b/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/logback-spring.xml b/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/logback-spring.xml index 087f298ccc..18c7f3dca3 100644 --- a/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/logback-spring.xml +++ b/anrui-riskcenter/anrui-riskcenter-biz/src/main/resources/logback-spring.xml @@ -1,50 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/AnruiScmApplication.java b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/AnruiScmApplication.java index 0add3a3f90..c410067d67 100644 --- a/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/AnruiScmApplication.java +++ b/anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/AnruiScmApplication.java @@ -25,6 +25,7 @@ *********************************************************/ package com.yxt.anrui.scm; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @@ -43,6 +44,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients; * @version 1.0 * @since 1.0 */ +@EnableLoggingClient @EnableDiscoveryClient @SpringBootApplication(scanBasePackages = { "com.yxt.common.base.config", diff --git a/anrui-scm/anrui-scm-biz/src/main/resources/application.yml b/anrui-scm/anrui-scm-biz/src/main/resources/application.yml index e83f16c41c..e31b2c8b39 100644 --- a/anrui-scm/anrui-scm-biz/src/main/resources/application.yml +++ b/anrui-scm/anrui-scm-biz/src/main/resources/application.yml @@ -38,4 +38,11 @@ hystrix: #ribbon的超时时间 ribbon: ReadTimeout: 30000 - ConnectTimeout: 30000 \ No newline at end of file + ConnectTimeout: 30000 + +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true \ No newline at end of file diff --git a/anrui-scm/anrui-scm-biz/src/main/resources/banner.txt b/anrui-scm/anrui-scm-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-scm/anrui-scm-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-scm/anrui-scm-biz/src/main/resources/logback-spring.xml b/anrui-scm/anrui-scm-biz/src/main/resources/logback-spring.xml index daec56d908..635650e460 100644 --- a/anrui-scm/anrui-scm-biz/src/main/resources/logback-spring.xml +++ b/anrui-scm/anrui-scm-biz/src/main/resources/logback-spring.xml @@ -1,54 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/TerminalApplication.java b/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/TerminalApplication.java index 8aaf16963a..c310dc3458 100644 --- a/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/TerminalApplication.java +++ b/anrui-terminal/anrui-terminal-biz/src/main/java/com/yxt/anrui/terminal/TerminalApplication.java @@ -1,8 +1,8 @@ package com.yxt.anrui.terminal; +import org.minbox.framework.logging.spring.context.annotation.client.EnableLoggingClient; import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; import org.springframework.cloud.openfeign.EnableFeignClients; @@ -10,8 +10,10 @@ import org.springframework.cloud.openfeign.EnableFeignClients; /** * @author dimengzhe */ +@EnableLoggingClient @SpringBootApplication(scanBasePackages = { - "com.yxt.anrui.terminal" + "com.yxt.anrui.terminal", + "com.yxt.common.base.config" },exclude = {DataSourceAutoConfiguration.class}) @EnableFeignClients(basePackages = {"com.yxt.anrui.portal", "com.yxt.anrui.crm", "com.yxt.anrui.base", "com.yxt.anrui.riskcenter","com.yxt.anrui.flowable","com.yxt.anrui.buscenter","com.yxt.anrui.scm","com.yxt.anrui.fin",}) public class TerminalApplication { diff --git a/anrui-terminal/anrui-terminal-biz/src/main/resources/application.yml b/anrui-terminal/anrui-terminal-biz/src/main/resources/application.yml index 5fc74e9e02..cf3716af87 100644 --- a/anrui-terminal/anrui-terminal-biz/src/main/resources/application.yml +++ b/anrui-terminal/anrui-terminal-biz/src/main/resources/application.yml @@ -39,6 +39,13 @@ ribbon: ReadTimeout: 30000 ConnectTimeout: 30000 +api: + boot: + logging: + show-console-log: true + #实现美化打印请求日志 + format-console-log-json: true + diff --git a/anrui-terminal/anrui-terminal-biz/src/main/resources/banner.txt b/anrui-terminal/anrui-terminal-biz/src/main/resources/banner.txt new file mode 100644 index 0000000000..98e44c5880 --- /dev/null +++ b/anrui-terminal/anrui-terminal-biz/src/main/resources/banner.txt @@ -0,0 +1,13 @@ + ,----.. ____ + / / \ ,' , `. +| : : ,---. ,-+-,.' _ | ,---. ,---, +. | ;. / ' ,'\ ,-+-. ; , || ' ,'\ ,-+-. / | +. ; /--` / / | ,--.'|' | || ,---. / / | ,--.'|' | +; | ; . ; ,. :| | ,', | |,/ \ . ; ,. :| | ,"' | +| : | ' | |: :| | / | |--'/ / | ' | |: :| | / | | +. | '___' | .; :| : | | , . ' / | ' | .; :| | | | | +' ; : .'| : || : | |/ ' ; /| | : || | | |/ +' | '/ :\ \ / | | |`-' ' | / | \ \ / | | |--' +| : / `----' | ;/ | : | `----' | |/ + \ \ .' '---' \ \ / '---' + `---` `----' diff --git a/anrui-terminal/anrui-terminal-biz/src/main/resources/logback-spring.xml b/anrui-terminal/anrui-terminal-biz/src/main/resources/logback-spring.xml index 5823fef31b..b6cfc9da19 100644 --- a/anrui-terminal/anrui-terminal-biz/src/main/resources/logback-spring.xml +++ b/anrui-terminal/anrui-terminal-biz/src/main/resources/logback-spring.xml @@ -1,50 +1,99 @@ - - - - + + + + - - - %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) - - + %yellow(%date{yyyy-MM-dd HH:mm:ss}) |%highlight(%-5level) |%green(%logger:%line) |%blue(%msg%n) + + + + + + + ${LOG_PATH}/${APPDIR}/log_error.log + + ${LOG_PATH}/${APPDIR}/error/log-error-%d{yyyy-MM-dd}.%i.log + + 500MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + error + ACCEPT + DENY + - - - - - - - + + + ${LOG_PATH}/${APPDIR}/log_warn.log + + ${LOG_PATH}/${APPDIR}/warn/log-warn-%d{yyyy-MM-dd}.%i.log + + 2MB + + + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + warn + ACCEPT + DENY + + - - ${log.base}.log + + + + ${LOG_PATH}/${APPDIR}/log_info.log - ${log.base}.%d{yyyyMMdd}.%i.log.zip - - - - 1MB + ${LOG_PATH}/${APPDIR}/info/log-info-%d{yyyy-MM-dd}.%i.log + + 2MB + true + + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + utf-8 + + + info + ACCEPT + DENY + + + + - - %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - -%msg%n - + %d{yyyy-MM-dd HH:mm:ss.SSS} %-5level %logger Line:%-3L - %msg%n + + + + + + + + + + - - + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml index a849b1f4cb..f5b6f1e67f 100644 --- a/pom.xml +++ b/pom.xml @@ -18,10 +18,444 @@ anrui-riskcenter anrui-base anrui-scm - anrui-management anrui-fin + anrui-terminal pom + + + 1.8 + + UTF-8 + + UTF-8 + 1.8 + 1.8 + + + + 2.2.9.RELEASE + + Hoxton.SR6 + + 2.2.1.RELEASE + + + 1.3.0 + + + + 2.5 + 1.14 + + 1.9.3 + + 2.6.2 + + + 3.4.0 + + 1.2.73 + + 0.9.1 + + + + 2.9.2 + 2.0.5 + + + 3.17 + + 2.3.2 + + 1.19 + + 1.7 + + + + 5.4.0 + 6.0.20.Final + 1.18.12 + 3.1.0 + 3.10.1 + 2.2.9.RELEASE + 1.8.1 + 4.1.2 + 6.5.0 + + + + + + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + org.springframework.cloud + spring-cloud-dependencies + ${spring-cloud.version} + pom + import + + + + com.alibaba.cloud + spring-cloud-alibaba-dependencies + ${spring-cloud-alibaba.version} + pom + import + + + + com.alibaba.nacos + nacos-client + ${nacos.version} + + + + org.springframework.boot + spring-boot-starter-data-redis + ${redis.version} + + + io.lettuce + lettuce-core + + + + + + com.auth0 + java-jwt + ${java-jwt.version} + + + + redis.clients + jedis + ${jedis.version} + + + + commons-io + commons-io + ${commons.io.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + + commons-beanutils + commons-beanutils + ${commons.beanutils.version} + + + + org.apache.commons + commons-pool2 + ${common-pool.version} + + + com.baomidou + mybatis-plus-boot-starter + ${mybatis-plus.version} + + + com.baomidou + mybatis-plus-annotation + ${mybatis-plus.version} + + + + com.alibaba + fastjson + ${fastjson.version} + + + + io.jsonwebtoken + jjwt + ${jjwt.version} + + + + + io.springfox + springfox-swagger2 + ${swagger.fox.version} + + + io.springfox + springfox-swagger-ui + ${swagger.fox.version} + + + com.github.xiaoymin + knife4j-dependencies + ${knife4j-Swagger} + pom + import + + + + + org.apache.poi + poi-ooxml + ${poi.version} + + + + com.github.penggle + kaptcha + ${kaptcha.version} + + + + eu.bitwalker + UserAgentUtils + ${bitwalker.version} + + + + org.apache.velocity + velocity + ${velocity.version} + + + + + cn.hutool + hutool-all + ${hutool.version} + + + + cn.hutool + hutool-core + ${hutool.version} + + + + cn.hutool + hutool-http + ${hutool.version} + + + + cn.hutool + hutool-crypto + ${hutool.version} + + + + cn.hutool + hutool-cache + ${hutool.version} + + + + cn.hutool + hutool-captcha + ${hutool.version} + + + + cn.hutool + hutool-poi + ${hutool.version} + + + + cn.hutool + hutool-json + ${hutool.version} + + + + cn.hutool + hutool-cron + ${hutool.version} + + + + cn.hutool + hutool-system + ${hutool.version} + + + + cn.hutool + hutool-setting + ${hutool.version} + + + + cn.hutool + hutool-extra + ${hutool.version} + + + + cn.hutool + hutool-aop + ${hutool.version} + + + + cn.hutool + hutool-bloomFilter + ${hutool.version} + + + + cn.hutool + hutool-db + ${hutool.version} + + + + cn.hutool + hutool-log + ${hutool.version} + + + + cn.hutool + hutool-socket + ${hutool.version} + + + + cn.hutool + hutool-dfa + ${hutool.version} + + + + cn.hutool + hutool-script + ${hutool.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + compile + + + org.projectlombok + lombok + true + ${lombok.version} + + + + + com.deepoove + poi-tl + ${poi-tl.version} + + + + org.apache.poi + poi + ${poi.version} + + + + org.flowable + flowable-engine + ${flowable.version} + compile + + + + org.flowable + flowable-spring-boot-starter-basic + ${flowable.version} + + + org.mybatis + mybatis + + + + + + + + + + + + + + + + aliyun-central + https://maven.aliyun.com/repository/central + + + aliyun-public + https://maven.aliyun.com/repository/public + + + aliyun-google + https://maven.aliyun.com/repository/google + + + aliyun-spring + https://maven.aliyun.com/repository/spring + + + + + aliyun-central + https://maven.aliyun.com/repository/central + + + aliyun-public + https://maven.aliyun.com/repository/public + + + aliyun-google + https://maven.aliyun.com/repository/google + + + aliyun-spring + https://maven.aliyun.com/repository/spring + + \ No newline at end of file