1234567891011121314151617181920 |
- server:
- port: 8080
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://47.111.97.7:3306/project?useSSL=false&serverTimezone=UTC&characterEncoding=UTF-8
- username: root
- password: root
- redis:
- host: 127.0.0.1
- port: 6379
- database: 0
- password:
- mybatis-plus:
- type-aliases-package: com.futu.goose.domain
- configuration:
- map-underscore-to-camel-case: true
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapper-locations: classpath:mapper/*.xml
|