mirror of
https://github.com/FreeeBird/hotel.git
synced 2025-05-06 19:49:26 +08:00
15 lines
369 B
YAML
15 lines
369 B
YAML
server:
|
|
port: 8080
|
|
servlet:
|
|
context-path: "/hotel"
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
username: root
|
|
password: root
|
|
url: jdbc:mysql://localhost:3306/hotel?useUnicode=true&characterEncoding=UTF-8
|
|
mybatis:
|
|
type-aliases-package: classpath*:cn.mafangui.hotel.entity
|
|
mapper-locations: classpath*:mybatis/mapper/*.xml
|
|
|