You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
420 B
15 lines
420 B
server:
|
|
port: 9090
|
|
|
|
spring:
|
|
datasource:
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/library-management?serverTimezone=GMT%2b8
|
|
username: root
|
|
password: 123456
|
|
|
|
mybatis:
|
|
mapper-locations: classpath:mapper/*.xml
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
map-underscore-to-camel-case: true # 开启数据库字段下划线转驼峰 |