1234567891011121314151617 |
- server:
- port: 8080
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://127.0.0.1:3306/test
- username: root
- password: root
- mybatis:
- type-aliases-package: com.unow.pojo
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- logging:
- level:
- com.unow: debug
- #mapper-locations: mapper/*.xml
|