12345678910111213141516171819202122232425262728293031 |
- server:
- port: 8080
- spring:
- thymeleaf:
- prefix: classpath:/templates/
- suffix: .html
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://47.115.47.67:3306/sso
- username: root
- password: root
- redis:
- host: 120.78.52.202
- port: 6378
- jedis:
- pool:
- max-active: 8
- max-wait: -1
- max-idle: 8
- min-idle: 0
- timeout: 5000
- database: 1
- mybatis:
- # 映射文件的位置
- mapper-locations: classpath:mapper/*.xml
- # 开启驼峰命名法
- configuration:
- map-underscore-to-camel-case: true
|