19 lines
399 B
YAML
19 lines
399 B
YAML
|
server:
|
||
|
port: 8088
|
||
|
|
||
|
web:
|
||
|
domain: http://localhost
|
||
|
|
||
|
spring:
|
||
|
datasource:
|
||
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
|
username: root
|
||
|
password: 123456
|
||
|
url: jdbc:mysql://localhost:3306/ssm_db?useUnicode=true&characterEncoding=utf8&autoReconnect=true&serverTimezone=GMT%2B8
|
||
|
type: com.zaxxer.hikari.HikariDataSource
|
||
|
|
||
|
logging:
|
||
|
level:
|
||
|
root: info
|
||
|
com.yovinchen.forum: info
|