weixin-server-dev.yml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. logging:
  2. level:
  3. org.springframework.web: INFO
  4. com.github.binarywang.demo.wx.mp: DEBUG
  5. me.chanjar.weixin: DEBUG
  6. wechat:
  7. open:
  8. componentAppId: wxebb6d40071dc817e
  9. componentSecret: fb87e72522d3af0e1acd18fdc21522a3
  10. componentToken: A_TOKEN
  11. componentAesKey: lr3dxCbG0Clep5zo9F2wZ7owkjOaDBr76lmlGSRhLio
  12. redis: #redis 配置
  13. database: 0
  14. password: Cs123456
  15. host: 192.168.1.210
  16. port: 6379
  17. hadoop:
  18. hdfs: hdfs://192.168.1.135:9000
  19. #spring
  20. spring:
  21. devtools:
  22. restart:
  23. enabled: false
  24. rabbitmq:
  25. host: 192.168.1.210
  26. port: 5672
  27. username: guest
  28. password: guest
  29. datasource:
  30. #指定自定义连接池
  31. type: com.zaxxer.hikari.HikariDataSource
  32. #指定数据库连接信息
  33. driver-class-name: com.mysql.jdbc.Driver
  34. #url: jdbc:mysql://sinosoft.vicp.io:11262/hmbst?useUnicode=true&characterEncoding=utf-8&useSSL=false
  35. #username: root
  36. #password: admin01
  37. url: jdbc:mysql://192.168.1.204:3306/callcenterdb2.0?useUnicode=true&characterEncoding=utf-8
  38. username: root
  39. password: Cs123456
  40. platform: mysql
  41. hikari:
  42. max-lifetime: 1765000
  43. maximum-pool-size: 15
  44. auto-commit: true
  45. connection-test-query: select 1
  46. #mybatis-plus
  47. mybatis-plus:
  48. mapper-locations: classpath*:/mapper/**/*.xml
  49. #实体扫描,多个package用逗号或者分号分隔
  50. typeAliasesPackage: ins.platform.*.po
  51. #typeEnumsPackage: com.baomidou.springboot.entity.enums
  52. global-config:
  53. # 数据库相关配置
  54. db-config:
  55. #主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID",ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
  56. id-type: id_worker
  57. #字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
  58. field-strategy: not_empty
  59. #驼峰下划线转换
  60. column-underline: true
  61. #数据库大写下划线转换
  62. #capital-mode: true
  63. #逻辑删除配置
  64. logic-delete-value: 0
  65. logic-not-delete-value: 1
  66. db-type: h2
  67. #刷新mapper 调试神器
  68. refresh: true
  69. # 原生配置
  70. configuration:
  71. map-underscore-to-camel-case: true
  72. cache-enabled: false
  73. saa:
  74. power: false
  75. basePackage: ins/**/po