You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.0 KiB
87 lines
2.0 KiB
# Tomcat
|
|
server:
|
|
servlet:
|
|
session:
|
|
timeout: -1
|
|
|
|
tomcat:
|
|
uri-encoding: UTF-8
|
|
max-threads: 1000
|
|
min-spare-threads: 30
|
|
port: 9000
|
|
connection-timeout: 5000ms
|
|
|
|
spring:
|
|
application:
|
|
name: xujie-sys
|
|
resources:
|
|
cache:
|
|
cachecontrol:
|
|
max-age: 0
|
|
chain:
|
|
cache: false
|
|
# 环境 dev|test|prod
|
|
profiles:
|
|
active: dev
|
|
freemarker:
|
|
suffix: .ftl
|
|
cache: false
|
|
#template-loader-path: '${user.dir}/templates' #外部页面设置
|
|
settings:
|
|
number_format: '0.##' #格式化数字, 无小数
|
|
# jackson时间格式化
|
|
jackson:
|
|
time-zone: GMT+8
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 100MB
|
|
max-request-size: 100MB
|
|
enabled: true
|
|
data:
|
|
redis:
|
|
database: 0
|
|
password: xujieredis
|
|
host: xujiesoft.vicp.net
|
|
port: 6379
|
|
timeout: 2000ms
|
|
lettuce:
|
|
pool:
|
|
max-active: 8
|
|
max-idle: 8
|
|
min-idle: 0
|
|
max-wait: -1ms
|
|
shutdown-timeout: 100ms
|
|
mvc:
|
|
throw-exception-if-no-handler-found: true
|
|
# resources:
|
|
# add-mappings: false
|
|
|
|
|
|
#mybatis
|
|
mybatis-plus:
|
|
mapper-locations: classpath:/mapper/**/*.xml
|
|
#实体扫描,多个package用逗号或者分号分隔
|
|
typeAliasesPackage: com.xujie.sys.modules.*.entity,com.xujie.sys.modules.*.data
|
|
global-config:
|
|
#数据库相关配置
|
|
db-config:
|
|
#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
|
id-type: AUTO
|
|
# 逻辑删除配置
|
|
logic-delete-value: -1
|
|
logic-not-delete-value: 0
|
|
# 启动或关闭 控制台logo
|
|
banner: false
|
|
#原生配置
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
cache-enabled: false
|
|
call-setters-on-nulls: true
|
|
jdbc-type-for-null: 'null'
|
|
logging:
|
|
level:
|
|
root: info
|
|
com.xujie.sys: debug
|
|
org.springframework.jdbc.core.JdbcTemplate: DEBUG
|