mirror of
https://github.com/201206030/novel.git
synced 2025-04-27 07:30:50 +00:00
92 lines
2.5 KiB
YAML
92 lines
2.5 KiB
YAML
java2nb:
|
||
uploadPath: c:/var/java2nb/uploaded_files/
|
||
username: admin
|
||
password: 111111
|
||
|
||
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
|
||
servlet:
|
||
multipart:
|
||
max-file-size: 30Mb
|
||
max-request-size: 30Mb
|
||
devtools:
|
||
restart:
|
||
enabled: true
|
||
cache:
|
||
type: redis
|
||
|
||
|
||
datasource:
|
||
type: com.alibaba.druid.pool.DruidDataSource
|
||
driverClassName: com.mysql.jdbc.Driver
|
||
url: jdbc:mysql://127.0.0.1:3306/books?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai
|
||
username: books
|
||
password: books
|
||
#password:
|
||
initialSize: 1
|
||
minIdle: 3
|
||
maxActive: 20
|
||
# 配置获取连接等待超时的时间
|
||
maxWait: 60000
|
||
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||
timeBetweenEvictionRunsMillis: 60000
|
||
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||
minEvictableIdleTimeMillis: 30000
|
||
validationQuery: select 'x'
|
||
testWhileIdle: true
|
||
testOnBorrow: false
|
||
testOnReturn: false
|
||
# 打开PSCache,并且指定每个连接上PSCache的大小
|
||
poolPreparedStatements: true
|
||
maxPoolPreparedStatementPerConnectionSize: 20
|
||
# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
|
||
filters: stat,wall,slf4j
|
||
# 通过connectProperties属性来打开mergeSql功能;慢SQL记录
|
||
connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
|
||
# 合并多个DruidDataSource的监控数据
|
||
#useGlobalDataSourceStat: true
|
||
redis:
|
||
host: 127.0.0.1
|
||
port: 6379
|
||
password: test
|
||
# 连接超时时间(毫秒)
|
||
timeout: 10000
|
||
jedis:
|
||
pool:
|
||
# 连接池中的最大空闲连接
|
||
max-idle: 8
|
||
# 连接池中的最小空闲连接
|
||
min-idle: 10
|
||
# 连接池最大连接数(使用负值表示没有限制)
|
||
max-active: 100
|
||
# 连接池最大阻塞等待时间(使用负值表示没有限制)
|
||
max-wait: -1
|
||
mybatis:
|
||
configuration:
|
||
#自动将数据库带下划线的表字段值映射到Java类的驼峰字段上
|
||
map-underscore-to-camel-case: true
|
||
mapper-locations: mybatis/**/*Mapper.xml
|
||
typeAliasesPackage: com.java2nb.**.domain
|
||
|
||
|
||
|
||
logging:
|
||
level:
|
||
root: info
|
||
com.java2nb: debug
|