17 lines
386 B
YAML
17 lines
386 B
YAML
|
server:
|
||
|
port: 8089
|
||
|
spring:
|
||
|
datasource:
|
||
|
url: jdbc:mysql://mysql:3306/tb_hotel?useSSL=false
|
||
|
username: root
|
||
|
password: "02120212"
|
||
|
driver-class-name: com.mysql.jdbc.Driver
|
||
|
logging:
|
||
|
level:
|
||
|
cn.itcast: debug
|
||
|
pattern:
|
||
|
dateformat: MM-dd HH:mm:ss:SSS
|
||
|
mybatis-plus:
|
||
|
configuration:
|
||
|
map-underscore-to-camel-case: true
|
||
|
type-aliases-package: cn.itcast.hotel.pojo
|