12345678910111213141516171819202122232425262728293031323334 |
- server:
- port: 8888
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 查看日志
- mapper-locations: classpath:mapper/*.xml #mapper的位置
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://47.113.197.148:33306/test?serverTimezone=GMT%2B8&useSSL=false&characterEncoding=utf-8&allowPublicKeyRetrieval=true
- username: root
- password: om1020
- redis:
- host: 47.113.197.148
- password: om1020
- port: 6379
- database: 1
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- #jwt配置
- #密钥
- jwt:
- secret: opera
- expiration: 7200000 #过期时间2小时
|