Files
dating/src/main/resources/application.yml

16 lines
463 B
YAML
Raw Normal View History

2025-12-15 11:55:31 +08:00
server:
port: 8080
spring:
datasource:
url: jdbc:mysql://114.55.250.24:3306/dating?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8
username: root
password: root
2025-12-17 19:55:24 +08:00
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis:
mapper-locations: classpath:mapper/*.xml
type-aliases-package: com.bao.dating.pojo
configuration:
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl