application-orm.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ################### mybatis-plus配置 ###################
  2. mybatis-plus:
  3. mapper-locations: classpath*:mapping/**/*.xml
  4. type-aliases-package: com.gxzc.zen.api.sys.mapper
  5. global-config:
  6. id-type: 0 #0:数据库ID自增 1:用户输入id 2:全局唯一id(IdWorker) 3:全局唯一ID(uuid)
  7. db-column-underline: true
  8. refresh-mapper: true
  9. logic-delete-value: 0
  10. logic-not-delete-value: 1
  11. sql-injector: com.gxzc.zen.orm.config.ZenSqlInjector # 自定义injector
  12. meta-object-handler: com.gxzc.zen.orm.config.CustomMetaObjectHandler
  13. configuration:
  14. map-underscore-to-camel-case: true
  15. cache-enabled: true #配置的缓存的全局开关
  16. lazyLoadingEnabled: true #延时加载的开关
  17. multipleResultSetsEnabled: true #延时加载一个属性时会加载该对象全部属性,否则按需加载属性
  18. interceptors: com.baomidou.mybatisplus.plugins.OptimisticLockerInterceptor, com.baomidou.mybatisplus.plugins.PaginationInterceptor, com.gxzc.zen.orm.data.authority.interceptor.ZenDataAuthorityInterceptor
  19. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用
  20. ---
  21. spring:
  22. profiles: dev
  23. datasource:
  24. type: com.alibaba.druid.pool.DruidDataSource
  25. druid:
  26. stat-view-servlet:
  27. enabled: true
  28. login-username: root
  29. login-password: root
  30. reset-enable: false
  31. test-on-borrow: true
  32. test-on-return: false
  33. test-while-idle: true
  34. driver-class-name: com.mysql.jdbc.Driver
  35. username: archives
  36. password: archives
  37. url: jdbc:mysql://192.168.1.10:3306/archives_sys?autoReconnect=true&useUnicode=true&characterEncoding=utf-8&useSSL=false&zeroDateTimeBehavior=convertToNull
  38. # &useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
  39. ---
  40. spring:
  41. profiles: prod
  42. datasource:
  43. type: com.alibaba.druid.pool.DruidDataSource
  44. druid:
  45. stat-view-servlet:
  46. enabled: true
  47. login-username: root
  48. login-password: root
  49. reset-enable: false
  50. test-on-borrow: true
  51. test-on-return: false
  52. test-while-idle: true
  53. driver-class-name: com.mysql.jdbc.Driver
  54. username: archives
  55. password: archives
  56. url: jdbc:mysql://rm-wz9on0bqphwygm14j.mysql.rds.aliyuncs.com:3306/archives_sys?autoReconnect=true&useUnicode=true&characterEncoding=utf-8&useSSL=false&zeroDateTimeBehavior=convertToNull
  57. # &useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC