application.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. server:
  2. port: 8081
  3. ################### mybatis-plus配置 ###################
  4. mybatis-plus:
  5. mapper-locations: classpath:mapping/*/*.xml
  6. typeAliasesPackage: com.gxzc.zen.api.sys.mapper, com.gxzc.zen.api.rec.mapper
  7. global-config:
  8. id-type: 0 #0:数据库ID自增 1:用户输入id 2:全局唯一id(IdWorker) 3:全局唯一ID(uuid)
  9. db-column-underline: true
  10. refresh-mapper: true
  11. logic-delete-value: 0
  12. logic-not-delete-value: 1
  13. configuration:
  14. map-underscore-to-camel-case: true
  15. cache-enabled: true #配置的缓存的全局开关
  16. lazyLoadingEnabled: true #延时加载的开关
  17. multipleResultSetsEnabled: true #开启的话,延时加载一个属性时会加载该对象全部属性,否则按需加载属性
  18. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #打印sql语句,调试用
  19. ################### spring配置 ###################
  20. spring:
  21. profiles:
  22. active: dev
  23. include: orm
  24. # redis:
  25. # host: localhost
  26. # port: 6379
  27. # password:
  28. http:
  29. converters:
  30. preferred-json-mapper: fastjson
  31. multipart:
  32. max-request-size: 100MB #最大请求大小
  33. max-file-size: 100MB #最大文件大小
  34. aop:
  35. proxy-target-class: true #false为启用jdk默认动态代理,true为cglib动态代理