application-dev.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. server:
  2. port: 8082
  3. servlet:
  4. context-path: /
  5. spring:
  6. application:
  7. name:
  8. main:
  9. allow-bean-definition-overriding: true #当遇到同样名字的时候,是否允许覆盖注册
  10. # cloud:
  11. # nacos:
  12. # discovery:
  13. # server-addr: 192.168.2.216:8848
  14. # #指定yaml格式的配置
  15. # file-extension: yaml
  16. # cluster-name: master
  17. # username: nacos
  18. # password: nacos
  19. #redis集群
  20. redis:
  21. # host: 10.83.68.94
  22. host: 11.0.118.57
  23. port: 6379
  24. timeout: 100000
  25. # 集群环境打开下面注释,单机不需要打开
  26. # cluster:
  27. # 集群信息
  28. # nodes: xxx.xxx.xxx.xxx:xxxx,xxx.xxx.xxx.xxx:xxxx,xxx.xxx.xxx.xxx:xxxx
  29. # #默认值是5 一般当此值设置过大时,容易报:Too many Cluster redirections
  30. # maxRedirects: 3
  31. password:
  32. application:
  33. name: test
  34. jedis:
  35. pool:
  36. max-active: 8
  37. min-idle: 0
  38. max-idle: 8
  39. max-wait: -1
  40. database: 1
  41. autoconfigure:
  42. exclude: org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration
  43. datasource:
  44. type: com.alibaba.druid.pool.DruidDataSource
  45. driver-class-name: oracle.jdbc.OracleDriver
  46. #外网
  47. url: jdbc:oracle:thin:@11.0.118.62:1521:gdsj
  48. username: gdprod
  49. password: gd123
  50. oracle-schema=:
  51. # url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf8&serverTimezone=UTC
  52. # username: root
  53. # password: root
  54. # driver-class-name: com.mysql.jdbc.Driver
  55. # driver-class-name: org.postgresql.Driver
  56. # url: jdbc:postgresql://10.81.3.151:5432/wisdom
  57. # username: gdprod
  58. # password: gd123
  59. # oracle-schema=:
  60. druid:
  61. max-active: 20
  62. initial-size: 1
  63. min-idle: 3
  64. max-wait: 60000
  65. time-between-eviction-runs-millis: 60000
  66. min-evictable-idle-time-millis: 300000
  67. test-while-idle: true
  68. test-on-borrow: false
  69. test-on-return: false
  70. servlet:
  71. multipart:
  72. # 开启 multipart 上传功能
  73. enabled: true
  74. # 文件写入磁盘的阈值
  75. file-size-threshold: 2KB
  76. # 最大文件大小
  77. max-file-size: 200MB
  78. # 最大请求大小
  79. max-request-size: 215MB
  80. mybatis-plus:
  81. configuration:
  82. map-underscore-to-camel-case: true
  83. auto-mapping-behavior: full
  84. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  85. mapper-locations: classpath*:mapper/**/*Mapper.xml
  86. global-config:
  87. # 逻辑删除配置
  88. db-config:
  89. id-type: auto
  90. # 删除前
  91. logic-not-delete-value: 1
  92. # 删除后
  93. logic-delete-value: 0
  94. logging:
  95. level:
  96. root: info
  97. com.example: debug
  98. #db url
  99. db:
  100. url: http://11.0.118.58:8011/ts