diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml index d532e5aeb..bf5f54078 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS @@ -183,7 +178,7 @@ mybatis-plus: table-underline: true configuration: # # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用 -# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl + #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 返回类型为Map,显示null对应的字段 call-setters-on-nulls: true #jeecg专用配置 diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml index cfa86db3b..9400a9795 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-dm8.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS @@ -44,7 +39,7 @@ spring: quartz: job-store-type: jdbc jdbc: - initialize-schema: never + initialize-schema: embedded #定时任务启动开关,true-开 false-关 auto-startup: true #延迟1秒启动定时任务 @@ -130,7 +125,7 @@ spring: datasource: # 重点是将数据源指向oracle 用compatibleMode=oracle即可 master: - url: jdbc:dm://127.0.0.1:30236/?schema=SYSDBA&compatibleMode=oracle&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8 + url: jdbc:dm://127.0.0.1:30236?schema=SYSDBA&compatibleMode=oracle&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8 username: SYSDBA password: SYSDBA driverClassName: dm.jdbc.driver.DmDriver diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-docker.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-docker.yml index d64b282cb..765501a47 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-docker.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-docker.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS @@ -332,4 +327,4 @@ justauth: cache: type: default prefix: 'demo::' - timeout: 1h + timeout: 1h \ No newline at end of file diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml index 26763083f..413685953 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-kingbase8.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-oracle.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-oracle.yml index 000e4afb1..b88f1481a 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-oracle.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-oracle.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-postgresql.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-postgresql.yml index 55f322172..4c8772d55 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-postgresql.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-postgresql.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml index c5770bda9..c917fc83d 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml @@ -1,11 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - worker-threads: 16 - buffers: - websocket: 8192 - io: 16384 + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS @@ -287,7 +283,6 @@ jeecg: app-id: ?? api-key: ?? secret-key: ?? - #cas单点登录 cas: prefixUrl: http://cas.example.org:8443/cas diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-sqlserver.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-sqlserver.yml index 012b6bf4a..9dd0d3275 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-sqlserver.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-sqlserver.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # max-http-post-size: 10MB # 平替 tomcat server.tomcat.max-swallow-siz, undertow该值默认为-1 - worker-threads: 16 # 4核CPU标准配置 - buffers: - websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB - io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml index 1d0016feb..ffa7e5bb9 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml @@ -1,12 +1,7 @@ server: port: 8080 - undertow: - decode-url: true # 启用URL解码 - # 4核CPU标准配置 - worker-threads: 16 - buffers: - websocket: 8192 - io: 16384 + tomcat: + max-swallow-size: -1 error: include-exception: true include-stacktrace: ALWAYS @@ -290,7 +285,6 @@ jeecg: app-id: ?? api-key: ?? secret-key: ?? - #Mybatis输出sql日志 logging: level: diff --git a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/logback-spring.xml b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/logback-spring.xml index 6b9558ed7..67be47741 100644 --- a/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/logback-spring.xml +++ b/jeecg-boot/jeecg-module-system/jeecg-system-start/src/main/resources/logback-spring.xml @@ -73,7 +73,7 @@ + --> \ No newline at end of file