application-orm-local.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. orm:
  2. multi-datasource-enable: true # 多数据源开关
  3. ################## Alibaba Druid 配置 ##################
  4. spring:
  5. datasource:
  6. # type: com.alibaba.druid.pool.DruidDataSource
  7. druid:
  8. stat-view-servlet:
  9. enabled: true
  10. login-username: root
  11. login-password: root
  12. reset-enable: false
  13. jta:
  14. atomikos:
  15. properties:
  16. serial-jta-transactions: false
  17. ################## 数据源 配置 ##################
  18. ######## 单数据源使用sys作为默认数据源 ############
  19. datasource:
  20. sys:
  21. name: system
  22. url: jdbc:mysql://127.0.0.1:3306/archives_sys?pinGlobalTxToPhysicalConnection=true&useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  23. driver-class-name: com.mysql.jdbc.Driver
  24. username: root
  25. password: root
  26. test-on-borrow: false
  27. test-on-return: false
  28. test-while-idle: true
  29. validation-query: SELECT 1
  30. async-init: false
  31. filters: log4j,wall,mergeStat
  32. keep-alive: false
  33. initial-size: 5
  34. min-idle: 5
  35. max-active: 20
  36. time-between-eviction-runs-millis: 60000
  37. min-evictable-idle-time-millis: 30000
  38. bus:
  39. name: business
  40. url: jdbc:mysql://127.0.0.1:3306/archives_mgr?pinGlobalTxToPhysicalConnection=true&useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  41. driver-class-name: com.mysql.jdbc.Driver
  42. username: root
  43. password: root
  44. test-on-borrow: false
  45. test-on-return: false
  46. test-while-idle: true
  47. validation-query: SELECT 1
  48. async-init: false
  49. filters: log4j,wall,mergeStat
  50. keep-alive: false
  51. initial-size: 5
  52. min-idle: 5
  53. max-active: 20
  54. time-between-eviction-runs-millis: 60000
  55. min-evictable-idle-time-millis: 30000
  56. ################### mybatis-plus配置 ###################
  57. mybatis-plus:
  58. mapper-locations: classpath*:mapping/**/*.xml
  59. type-aliases-package: com.gxzc.zen.api.bus.mapper,com.gxzc.zen.api.sys.mapper,com.gxzc.zen.api.bus.mapper,com.gxzc.zen.api.bus.mapper
  60. global-config:
  61. id-type: 0 #0:数据库ID自增 1:用户输入id 2:全局唯一id(IdWorker) 3:全局唯一ID(uuid)
  62. db-column-underline: true
  63. refresh-mapper: true
  64. logic-delete-value: 0
  65. logic-not-delete-value: 1
  66. sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjector
  67. meta-object-handler: com.gxzc.zen.orm.CustomMetaObjectHandler
  68. configuration:
  69. map-underscore-to-camel-case: true
  70. cache-enabled: true #配置的缓存的全局开关
  71. lazyLoadingEnabled: true #延时加载的开关
  72. multipleResultSetsEnabled: true #延时加载一个属性时会加载该对象全部属性,否则按需加载属性
  73. interceptors: com.baomidou.mybatisplus.plugins.OptimisticLockerInterceptor, com.baomidou.mybatisplus.plugins.PaginationInterceptor
  74. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用
  75. ##sharding-jdbc
  76. #sharding:
  77. # jdbc:
  78. # datasource:
  79. # names: ds_sys,ds_rec
  80. # ds_sys:
  81. # type: com.alibaba.druid.pool.DruidDataSource
  82. # driver-class-name: com.mysql.jdbc.Driver
  83. # 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
  84. # username: root
  85. # password: root
  86. # maxActive: 20
  87. # ds_rec:
  88. # type: com.alibaba.druid.pool.DruidDataSource
  89. # driver-class-name: com.mysql.jdbc.Driver
  90. # 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
  91. # username: root
  92. # password: root
  93. # maxActive: 20
  94. # config:
  95. # sharding:
  96. # tables:
  97. # sys_dept:
  98. # actualDataNodes: 'ds_sys
  99. # sys_dic:
  100. # sys_param: