application-jn.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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: 10.81.3.155
  22. port: 6379
  23. timeout: 100000
  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://10.81.3.151:5432/wisdom
  46. username: gdprod
  47. password: gd123
  48. oracle-schema=:
  49. # type: com.alibaba.druid.pool.DruidDataSource
  50. # url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf8&serverTimezone=UTC
  51. # username: root
  52. # password: root
  53. # driver-class-name: com.mysql.jdbc.Driver
  54. druid:
  55. max-active: 20
  56. initial-size: 1
  57. min-idle: 3
  58. max-wait: 60000
  59. time-between-eviction-runs-millis: 60000
  60. min-evictable-idle-time-millis: 300000
  61. test-while-idle: true
  62. test-on-borrow: false
  63. test-on-return: false
  64. servlet:
  65. multipart:
  66. # 开启 multipart 上传功能
  67. enabled: true
  68. # 文件写入磁盘的阈值
  69. file-size-threshold: 2KB
  70. # 最大文件大小
  71. max-file-size: 200MB
  72. # 最大请求大小
  73. max-request-size: 215MB
  74. mybatis-plus:
  75. configuration:
  76. map-underscore-to-camel-case: true
  77. auto-mapping-behavior: full
  78. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  79. default-enum-type-handler: org.apache.ibatis.type.EnumOrdinalTypeHandler
  80. mapper-locations: classpath*:mapper/**/*Mapper.xml
  81. global-config:
  82. # 逻辑删除配置
  83. db-config:
  84. #id-type: auto
  85. # 删除前
  86. logic-not-delete-value: 1
  87. # 删除后
  88. logic-delete-value: 0
  89. #table-prefix: t_
  90. id-type: assign_uuid
  91. #配置类型别名对应的包
  92. type-aliases-package: com.gyee.backconfig.model.auto
  93. #用于扫描通用枚举包
  94. type-enums-package: com.gyee.backconfig.config
  95. logging:
  96. level:
  97. root: info
  98. com.example: debug
  99. db:
  100. url: http://124.70.75.91:8011/ts