35 lines
811 B
YAML
35 lines
811 B
YAML
|
server:
|
||
|
port: 8772
|
||
|
|
||
|
spring:
|
||
|
application:
|
||
|
name: spring-security
|
||
|
profiles:
|
||
|
active: dev
|
||
|
|
||
|
datasource:
|
||
|
type: com.zaxxer.hikari.HikariDataSource
|
||
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
|
url: jdbc:mysql://${bunny.master.host}:${bunny.master.port}/${bunny.master.database}?serverTimezone=GMT%2B8&useSSL=false&characterEncoding=utf-8&allowPublicKeyRetrieval=true
|
||
|
username: ${bunny.master.username}
|
||
|
password: ${bunny.master.password}
|
||
|
hikari:
|
||
|
maximum-pool-size: 20
|
||
|
connection-timeout: 30000
|
||
|
|
||
|
jackson:
|
||
|
date-format: yyyy-MM-dd HH:mm:ss
|
||
|
|
||
|
mybatis-plus:
|
||
|
mapper-locations: classpath:/mapper/*.xml
|
||
|
global-config:
|
||
|
db-config:
|
||
|
id-type: auto
|
||
|
logic-delete-value: 1
|
||
|
logic-not-delete-value: 0
|
||
|
|
||
|
logging:
|
||
|
level:
|
||
|
com.spring: debug
|
||
|
root: info
|