staff_mgr/target/classes/application-mysql.yml

14 lines
414 B
YAML

spring:
datasource:
url: jdbc:mysql://${MYSQL_HOST:localhost}:3306/hr_main_db?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true
driver-class-name: com.mysql.cj.jdbc.Driver
username: ${MYSQL_USER:root}
password: ${MYSQL_PASSWORD:root}
jpa:
hibernate:
ddl-auto: none
open-in-view: false
sql:
init:
mode: never