| 1234567891011121314151617181920212223242526272829 |
- server:
- port: 8080
- servlet:
- context-path: /api
-
- spring:
- datasource:
- driver-class-name: dm.jdbc.driver.DmDriver
- url: jdbc:dm://10.19.13.211:5236
- username: SGGMINFT
- password: SXxxjsgs2025
- druid:
- initial-size: 5
- min-idle: 5
- max-active: 20
- max-wait: 60000
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 300000
- validation-query: SELECT 1
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
-
- mybatis-plus:
- mapper-locations: classpath:mapper/*.xml,classpath:mapper/contract/*.xml
- type-aliases-package: com.example.backend.entity
- configuration:
- map-underscore-to-camel-case: true
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|