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.
96 lines
2.5 KiB
96 lines
2.5 KiB
|
3 years ago
|
#开启健康检查、审计、统计和监控,即可通过访问/actuator/beans等查看状态
|
||
|
|
management:
|
||
|
|
endpoints:
|
||
|
|
web:
|
||
|
|
exposure:
|
||
|
|
include: beans,health
|
||
|
|
spring:
|
||
|
|
servlet:
|
||
|
|
multipart:
|
||
|
|
enabled: true
|
||
|
|
max-file-size: 100MB # 单个文件上传的最大上限
|
||
|
|
max-request-size: 100MB # 一次请求总大小上限
|
||
|
|
|
||
|
|
mail:
|
||
|
|
#邮箱配置
|
||
|
|
#平台地址,这里用的是qq邮箱,使用其他邮箱请更换
|
||
|
|
host: smtp.qq.com
|
||
|
|
#这里是你要发送邮箱的账户
|
||
|
|
username: 1789131794@qq.com
|
||
|
|
#发送短信后它给你的授权码
|
||
|
|
password: ######
|
||
|
|
properties:
|
||
|
|
mail:
|
||
|
|
smtp:
|
||
|
|
ssl:
|
||
|
|
enable: true
|
||
|
|
##编码格式
|
||
|
|
default-encoding: utf-8
|
||
|
|
##数据库设置
|
||
|
|
datasource:
|
||
|
|
username: root
|
||
|
|
password: root
|
||
|
|
url: jdbc:mysql://localhost:3306/depository?serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
|
||
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
||
|
|
initialSize: 5
|
||
|
|
minIdle: 5
|
||
|
|
maxActive: 10
|
||
|
|
maxWait: 60000
|
||
|
|
timeBetweenEvictionRunsMillis: 60000
|
||
|
|
minEvictableIdleTimeMillis: 300000
|
||
|
|
validationQuery: SELECT 1 FROM DUAL
|
||
|
|
useGlobalDataSourceStat: true
|
||
|
|
server:
|
||
|
|
port: 9090
|
||
|
|
testWhileIdle: true
|
||
|
|
testOnReturn: false
|
||
|
|
testOnBorrow: false
|
||
|
|
poolPreparedStatements: true
|
||
|
|
maxPoolPreparedStatementPerConnectionSize: 20
|
||
|
|
#配置监控统计拦截的filters,去掉后监控界面sql将无法统计,'wall'用于防火墙
|
||
|
|
filters: stat, wall, log4j
|
||
|
|
connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
|
||
|
|
#超时回收机制
|
||
|
|
removeAbandoned: true
|
||
|
|
removeAbandonedTimeout: 1800
|
||
|
|
logAbandoned: true
|
||
|
|
redis:
|
||
|
|
host: 127.0.0.1
|
||
|
|
port: 6379
|
||
|
|
lettuce:
|
||
|
|
shutdown-timeout: 1000
|
||
|
|
pool:
|
||
|
|
max-active: 0
|
||
|
|
max-wait: -1
|
||
|
|
max-idle: 8
|
||
|
|
min-idle: 0
|
||
|
|
timeout: 500
|
||
|
|
banner:
|
||
|
|
location: banner.txt
|
||
|
|
thymeleaf:
|
||
|
|
cache: false
|
||
|
|
mode: HTML
|
||
|
|
mvc:
|
||
|
|
hiddenmethod:
|
||
|
|
filter:
|
||
|
|
enabled: true
|
||
|
|
view:
|
||
|
|
prefix: /templates/
|
||
|
|
suffix: .html
|
||
|
|
static-path-pattern: /static/**
|
||
|
|
# resources:
|
||
|
|
# static-locations: classpath:/static/
|
||
|
|
server:
|
||
|
|
mybatis:
|
||
|
|
type-aliases-package: com.dreamchaser.depository_manage.entity
|
||
|
|
configuration:
|
||
|
|
log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
|
||
|
|
log-prefix: mapper.
|
||
|
|
|
||
|
|
mybatis-plus:
|
||
|
|
configuration:
|
||
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||
|
|
|
||
|
|
file:
|
||
|
|
uploadPath: D:/upLoad
|