1234567891011121314151617181920212223242526272829 |
- 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=UTC
- username: root
- password: hsp
- mvc:
- pathmatch:
- matching-strategy: ant_path_matcher
- redis:
- database: 12
- host: anyi.space
- port: 7000
- password: yangyi
- server:
- port: 8080
- 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
|