12345678910111213141516171819202122232425262728293031 |
- spring:
- application:
- name: BI
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://localhost:3306/bi?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai
- username: root
- password: hsp
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- redis:
- database: 0
- host: localhost
- # host: anyi.space
- # port: 7000
- port: 6379
- # password: yangyi
- server:
- port: 8888
- servlet:
- context-path: /
- mybatis-plus:
- global-config:
- db-config:
- logic-delete-field: deleteFlag
- logic-delete-value: 1
- logic-not-delete-value: 0
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapper-locations: classpath:/mapper/*.xml
|