application-orm.yml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #spring:
  2. # datasource:
  3. # type: com.alibaba.druid.pool.DruidDataSource
  4. ################### mybatis-plus配置 ###################
  5. mybatis-plus:
  6. mapper-locations: classpath*:mapping/**/*.xml
  7. # type-aliases-package: com.gxzc.zen.api.bus.mapper,com.gxzc.zen.api.sys.mapper #,com.gxzc.zen.api.useage.mapper
  8. global-config:
  9. id-type: 0 #0:数据库ID自增 1:用户输入id 2:全局唯一id(IdWorker) 3:全局唯一ID(uuid)
  10. db-column-underline: true
  11. refresh-mapper: true
  12. logic-delete-value: 0
  13. logic-not-delete-value: 1
  14. sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjector
  15. configuration:
  16. map-underscore-to-camel-case: true
  17. cache-enabled: true #配置的缓存的全局开关
  18. lazyLoadingEnabled: true #延时加载的开关
  19. multipleResultSetsEnabled: true #延时加载一个属性时会加载该对象全部属性,否则按需加载属性
  20. interceptors: com.baomidou.mybatisplus.plugins.OptimisticLockerInterceptor
  21. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用
  22. ################## Alibaba Druid 配置 ##################
  23. spring:
  24. datasource:
  25. druid:
  26. stat-view-servlet:
  27. enabled: true
  28. login-username: root
  29. login-password: root
  30. reset-enable: false
  31. datasource:
  32. sys:
  33. name: archives_sys
  34. url: jdbc:mysql://127.0.0.1:3306/archives_sys?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  35. username: root
  36. password: root
  37. testWhileIdle: true
  38. testOnBorrow: false
  39. testOnReturn: false
  40. validationQuery: SELECT 1
  41. asyncInit: false # 异步初始化
  42. filters: log4j,wall,mergeStat
  43. keepAlive: false
  44. driver-class-name: com.mysql.jdbc.Driver
  45. initialize: false #指定初始化数据源,是否用data.sql来初始化,默认: true
  46. initialSize: 5
  47. minIdle: 5
  48. maxActive: 20
  49. timeBetweenEvictionRunsMillis: 60000
  50. minEvictableIdleTimeMillis: 30000
  51. bus:
  52. name: archives_receive
  53. url: jdbc:mysql://127.0.0.1:3306/archives_rec?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  54. username: root
  55. password: root
  56. testWhileIdle: true
  57. testOnBorrow: false
  58. testOnReturn: false
  59. validationQuery: SELECT 1
  60. asyncInit: false # 异步初始化
  61. filters: log4j,wall,mergeStat
  62. keepAlive: false
  63. driver-class-name: com.mysql.jdbc.Driver
  64. initialize: false #指定初始化数据源,是否用data.sql来初始化,默认: true
  65. initialSize: 5
  66. minIdle: 5
  67. maxActive: 20
  68. timeBetweenEvictionRunsMillis: 60000
  69. minEvictableIdleTimeMillis: 30000
  70. ##sharding-jdbc
  71. #sharding:
  72. # jdbc:
  73. # datasource:
  74. # names: ds_sys,ds_rec
  75. # ds_sys:
  76. # type: com.alibaba.druid.pool.DruidDataSource
  77. # driver-class-name: com.mysql.jdbc.Driver
  78. # url: jdbc:mysql://127.0.0.1:3306/archives_sys?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  79. # username: root
  80. # password: root
  81. # maxActive: 20
  82. # ds_rec:
  83. # type: com.alibaba.druid.pool.DruidDataSource
  84. # driver-class-name: com.mysql.jdbc.Driver
  85. # url: jdbc:mysql://127.0.0.1:3306/archives_rec?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  86. # username: root
  87. # password: root
  88. # maxActive: 20
  89. # config:
  90. # sharding:
  91. # tables:
  92. # sys_dept:
  93. # actualDataNodes: 'ds_sys
  94. # sys_dic:
  95. # sys_param: