| 1234567891011121314151617181920212223 |
- server:
- port: 9091
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: 123456
- url: jdbc:mysql://localhost:3306/login?serverTimezone=UTC
- mybatis:
- type-aliases-package: com.bcn.login_mybatis_demo.pojo
- mapper-locations: classpath:mapper/*.xml
- # Turn on camelCase
- configuration:
- map-underscore-to-camel-case: true
- # Show sql
- logging:
- level:
- com:
- example:
- mapper : debug
|