136 lines
3.7 KiB
YAML
136 lines
3.7 KiB
YAML
server:
|
|
port: 8083
|
|
# max-http-header-size: 1000MB
|
|
spring:
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
autoconfigure:
|
|
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
|
session:
|
|
timeout: 120m
|
|
datasource:
|
|
druid:
|
|
stat-view-servlet:
|
|
loginUsername:
|
|
loginPassword:
|
|
dynamic:
|
|
druid:
|
|
initial-size: 5
|
|
min-idle: 5
|
|
maxActive: 20
|
|
maxWait: 60000
|
|
timeBetweenEvictionRunsMillis: 60000
|
|
minEvictableIdleTimeMillis: 300000
|
|
validationQuery: SELECT 1
|
|
testWhileIdle: true
|
|
testOnBorrow: false
|
|
testOnReturn: false
|
|
poolPreparedStatements: true
|
|
maxPoolPreparedStatementPerConnectionSize: 20
|
|
filters: stat,wall,slf4j
|
|
connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
|
|
primary: master
|
|
strict: false
|
|
datasource:
|
|
# ? ? ? ?
|
|
master:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
type: com.alibaba.druid.pool.DruidDataSource
|
|
url: jdbc:mysql://127.0.0.1:3306/mystyle-blog?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
|
|
username: root
|
|
password: root
|
|
jpa:
|
|
database: mysql
|
|
hibernate:
|
|
ddl-auto: update
|
|
naming:
|
|
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
|
|
show-sql: true
|
|
properties:
|
|
hibernate:
|
|
dialect: org.hibernate.dialect.MySQL5Dialect
|
|
quartz:
|
|
properties:
|
|
org:
|
|
quartz:
|
|
scheduler:
|
|
instanceName: DefaultQuartzScheduler
|
|
instanceId: AUTO
|
|
jobStore:
|
|
class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
|
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
|
tablePrefix: QRTZ_
|
|
isClustered: false
|
|
clusterCheckinInterval: 10000
|
|
useProperties: false
|
|
threadPool:
|
|
class: org.quartz.simpl.SimpleThreadPool
|
|
threadCount: 10
|
|
threadPriority: 5
|
|
threadsInheritContextClassLoaderOfInitializingThread: true
|
|
job-store-type: jdbc
|
|
jdbc:
|
|
initialize-schema: never
|
|
freemarker:
|
|
suffix: .ftl
|
|
check-template-location: true
|
|
content-type: text/html
|
|
charset: UTF-8
|
|
template-loader-path: classpath:/templates/
|
|
cache: false
|
|
enabled: true
|
|
request-context-attribute: request
|
|
mail:
|
|
default-encoding: UTF-8
|
|
port: 465
|
|
username: zhang1334717033@foxmail.com
|
|
password: gymxczptynubfgih
|
|
test-connection: false
|
|
host: smtp.qq.com
|
|
protocol: smtps
|
|
properties:
|
|
mail:
|
|
smtp:
|
|
auth: true
|
|
starttls:
|
|
enable: true
|
|
required: true
|
|
rabbitmq:
|
|
host: localhost
|
|
port: 5672
|
|
username: guest
|
|
password: guest
|
|
jackson:
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
time-zone: GMT+8
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 1000MB
|
|
max-request-size: 1000MB
|
|
pagehelper:
|
|
row-bounds-with-count: true
|
|
offset-as-page-num: true
|
|
page-size-zero: true
|
|
reasonable: false
|
|
support-methods-arguments: false
|
|
params: count=countSql
|
|
helper-dialect: mysql
|
|
mybatis:
|
|
type-aliases-package: com.zhangmeng.modules
|
|
configuration:
|
|
mapUnderscoreToCamelCase: true
|
|
default-enum-type-handler: org.apache.ibatis.type.EnumOrdinalTypeHandler
|
|
mapper:
|
|
style: normal
|
|
enum-as-simple-type: true
|
|
identity: MYSQL
|
|
check-example-entity-class: true
|
|
logging:
|
|
config: classpath:logback-spring.xml
|
|
log:
|
|
level:
|
|
root: info
|
|
my: info
|
|
file-path: logs/admin-server.log
|
|
max-size: 30MB
|