56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
server:
|
|
port: 8080
|
|
spring:
|
|
datasource:
|
|
url: jdbc:mysql://localhost:3306/deploy-ease-platform?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
|
|
username: root
|
|
password: root
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: update
|
|
show-sql: true
|
|
properties:
|
|
hibernate:
|
|
format_sql: false
|
|
use_sql_comments: true
|
|
dialect: org.hibernate.dialect.MySQL8Dialect
|
|
jdbc:
|
|
time_zone: Asia/Shanghai
|
|
mvc:
|
|
log-request-details: true
|
|
messages:
|
|
basename: messages
|
|
encoding: UTF-8
|
|
fallback-to-system-locale: false
|
|
messages:
|
|
basename: messages
|
|
encoding: UTF-8
|
|
fallback-to-system-locale: false
|
|
always-use-message-format: false
|
|
use-code-as-default-message: true
|
|
cache-duration: 3600
|
|
logging:
|
|
level:
|
|
org.springframework.web: DEBUG
|
|
org.springframework.context.i18n: DEBUG
|
|
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: TRACE
|
|
org.hibernate.SQL: INFO
|
|
org.hibernate.type.descriptor.sql: TRACE
|
|
org.hibernate.type.descriptor.sql.BasicBinder: INFO
|
|
org.hibernate.orm.jdbc.bind: INFO
|
|
com.qqchen.deploy.backend.framework.utils.EntityPathResolver: DEBUG
|
|
com.qqchen.deploy.backend: DEBUG
|
|
jwt:
|
|
secret: 'thisIsAVeryVerySecretKeyForJwtTokenGenerationAndValidation123456789'
|
|
expiration: 86400
|
|
|
|
jackson:
|
|
time-zone: Asia/Shanghai
|
|
flyway:
|
|
enabled: true
|
|
baseline-on-migrate: true
|
|
locations: classpath:db/migration
|
|
table: flyway_schema_history
|
|
baseline-version: 0
|
|
validate-on-migrate: true |