application-orm.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. orm:
  2. multi-datasource-enable: false # 多数据源开关
  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. test-on-borrow: true
  14. test-on-return: false
  15. test-while-idle: true
  16. driver-class-name: com.mysql.jdbc.Driver
  17. username: archives
  18. password: archives
  19. url: jdbc:mysql://192.168.1.10:3306/archives_sys?pinGlobalTxToPhysicalConnection=true&autoReconnect=true&useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  20. jta:
  21. atomikos:
  22. properties:
  23. serial-jta-transactions: false
  24. ################## 数据源 配置 ##################
  25. ######## 单数据源使用sys作为默认数据源 ############
  26. datasource:
  27. sys:
  28. name: system
  29. url: jdbc:mysql://192.168.1.10:3306/archives_sys?pinGlobalTxToPhysicalConnection=true&autoReconnect=true&useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
  30. driver-class-name: com.mysql.jdbc.Driver
  31. username: archives
  32. password: archives
  33. test-on-borrow: true
  34. test-on-return: false
  35. test-while-idle: true
  36. validation-query: SELECT 1
  37. async-init: false
  38. filters: log4j,wall,mergeStat
  39. keep-alive: false
  40. initial-size: 5
  41. min-idle: 5
  42. max-active: 20
  43. time-between-eviction-runs-millis: 60000
  44. min-evictable-idle-time-millis: 30000
  45. ################### mybatis-plus配置 ###################
  46. mybatis-plus:
  47. mapper-locations: classpath*:mapping/**/*.xml
  48. type-aliases-package: com.gxzc.zen.api.sys.mapper
  49. global-config:
  50. id-type: 0 #0:数据库ID自增 1:用户输入id 2:全局唯一id(IdWorker) 3:全局唯一ID(uuid)
  51. db-column-underline: true
  52. refresh-mapper: true
  53. logic-delete-value: 0
  54. logic-not-delete-value: 1
  55. sql-injector: com.gxzc.zen.orm.sql.ZenSqlInjector # 自定义injector
  56. meta-object-handler: com.gxzc.zen.orm.CustomMetaObjectHandler
  57. configuration:
  58. map-underscore-to-camel-case: true
  59. cache-enabled: true #配置的缓存的全局开关
  60. lazyLoadingEnabled: true #延时加载的开关
  61. multipleResultSetsEnabled: true #延时加载一个属性时会加载该对象全部属性,否则按需加载属性
  62. interceptors: com.baomidou.mybatisplus.plugins.OptimisticLockerInterceptor, com.baomidou.mybatisplus.plugins.PaginationInterceptor
  63. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用