application-xk.yml 2.8 KB

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