mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-13 08:58:30 +00:00
45 lines
1.0 KiB
Java
45 lines
1.0 KiB
Java
server:
|
||
session-timeout: 18000
|
||
# tomcat:
|
||
# max-threads: 1000
|
||
# min-spare-threads: 30
|
||
port: 80
|
||
# uri-encoding: utf-8
|
||
#security:
|
||
# basic:
|
||
# enabled: false
|
||
spring:
|
||
thymeleaf:
|
||
mode: LEGACYHTML5
|
||
cache: false
|
||
jackson:
|
||
time-zone: GMT+8
|
||
date-format: yyyy-MM-dd HH:mm:ss
|
||
profiles:
|
||
active: dev
|
||
|
||
#上传文件的最大值(100M)
|
||
servlet:
|
||
multipart:
|
||
max-file-size: 100MB
|
||
max-request-size: 100MB
|
||
|
||
devtools:
|
||
restart:
|
||
enabled: true
|
||
main:
|
||
allow-bean-definition-overriding: true
|
||
|
||
mybatis:
|
||
configuration:
|
||
#自动将数据库带下划线的表字段值映射到Java类的驼峰字段上
|
||
map-underscore-to-camel-case: true
|
||
mapper-locations: mybatis/**/*Mapper.xml
|
||
typeAliasesPackage: com.java2nb.**.domain
|
||
#[弃用]配置缓存和session存储方式,默认ehcache,可选redis,[弃用]调整至 spring cache type【shiro.用户,权限,session,spring.cache通用】
|
||
#[弃用]cacheType: ehcache
|
||
|
||
|
||
logging:
|
||
config: classpath:logback-boot.xml
|