application.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. server:
  2. servlet:
  3. context-path: /
  4. port: 8872
  5. sa-token:
  6. activity-timeout: 18000
  7. token-name: token
  8. token-style: tik
  9. #是否允许同一账号并发登录 (为true时允许一起登录, 为false时新登录挤掉旧登录)
  10. is-concurrent: true
  11. timeout: 604800
  12. spring:
  13. thymeleaf:
  14. cache: false
  15. mode: HTML5
  16. mvc:
  17. pathmatch:
  18. matching-strategy: ant_path_matcher
  19. aop:
  20. auto: true
  21. proxy-target-class: true
  22. application:
  23. name: rms
  24. servlet:
  25. multipart:
  26. max-file-size: 1000MB
  27. max-request-size: 1000MB
  28. profiles:
  29. active: dev
  30. jackson:
  31. default-property-inclusion: non_null
  32. serialization:
  33. INDENT_OUTPUT: true
  34. date-format: yyyy-MM-dd HH:mm:ss
  35. time-zone: Asia/Shanghai
  36. logging:
  37. config: classpath:config/logback-spring.xml
  38. level:
  39. cn.cslg.report.mapper: debug
  40. #mybatis
  41. mybatis-plus:
  42. typeAliasesPackage: cn.cslg.report.entity
  43. global-config:
  44. db-config:
  45. id-type: AUTO
  46. logic-delete-value: 0
  47. logic-not-delete-value: 1
  48. configuration:
  49. #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  50. map-underscore-to-camel-case: true
  51. cache-enabled: false
  52. mapper-locations: classpath:mapper/*.xml