1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| server:
| port: 9090
|
| spring:
| datasource:
| driver-class-name: com.mysql.cj.jdbc.Driver
| url: jdbc:mysql://localhost:3306/springboot-vue3
| username: root
| password: 123456
| mybatis:
| configuration:
| map-underscore-to-camel-case: true
| logging:
| level:
| com.example.springboot.mapper: debug
|
|