12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- server:
- port: 8035
- servlet:
- context-path: /
- spring:
- main:
- allow-bean-definition-overriding: true
-
- redis:
- host: 10.83.68.94
- port: 6379
- timeout: 100000
-
-
-
-
-
-
- password:
- application:
- name: test
- jedis:
- pool:
- max-active: 8
- min-idle: 0
- max-idle: 8
- max-wait: -1
- database: 1
- autoconfigure:
- exclude: org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: oracle.jdbc.OracleDriver
-
- url: jdbc:oracle:thin:@10.83.68.165:1521:gdsj
- username: gdprod
- password: gd123
- oracle-schema=:
-
-
-
-
-
- druid:
- max-active: 20
- initial-size: 1
- min-idle: 3
- max-wait: 60000
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 300000
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- servlet:
- multipart:
-
- enabled: true
-
- file-size-threshold: 2KB
-
- max-file-size: 200MB
-
- max-request-size: 215MB
- mybatis-plus:
- configuration:
- map-underscore-to-camel-case: true
- auto-mapping-behavior: full
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- mapper-locations: classpath*:mapper/**/*Mapper.xml
- global-config:
-
- db-config:
- id-type: auto
-
- logic-not-delete-value: 1
-
- logic-delete-value: 0
- logging:
- level:
- root: info
- com.example: debug
- golden:
- baseURL: http://10.155.32.4:8011/ts
|