application.yml 1004 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. server:
  2. servlet:
  3. context-path: /
  4. port: 8877
  5. # sa-token:
  6. # activity-timeout: 18000
  7. # token-name: token
  8. # token-style: tik
  9. spring:
  10. thymeleaf:
  11. cache: false
  12. mode: HTML5
  13. aop:
  14. auto: true
  15. proxy-target-class: true
  16. application:
  17. name: pas
  18. servlet:
  19. multipart:
  20. max-file-size: 1000MB
  21. max-request-size: 1000MB
  22. profiles:
  23. active: prodNetOut
  24. jackson:
  25. default-property-inclusion: non_null
  26. serialization:
  27. INDENT_OUTPUT: true
  28. date-format: yyyy-MM-dd HH:mm:ss
  29. time-zone: Asia/Shanghai
  30. logging:
  31. config: classpath:config/logback-spring.xml
  32. level:
  33. cn.cslg.pas.mapper: debug
  34. #mybatis
  35. mybatis-plus:
  36. typeAliasesPackage: cn.cslg.pas.domain
  37. global-config:
  38. db-config:
  39. id-type: AUTO
  40. logic-delete-value: 0
  41. logic-not-delete-value: 1
  42. configuration:
  43. #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  44. map-underscore-to-camel-case: true
  45. cache-enabled: false
  46. mapper-locations: classpath:mapper/*.xml