1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- server:
- servlet:
- context-path: /
- port: 8877
- # sa-token:
- # activity-timeout: 18000
- # token-name: token
- # token-style: tik
- spring:
- thymeleaf:
- cache: false
- mode: HTML5
- aop:
- auto: true
- proxy-target-class: true
- application:
- name: pas
- servlet:
- multipart:
- max-file-size: 1000MB
- max-request-size: 1000MB
- profiles:
- active: prodNetOut
- jackson:
- default-property-inclusion: non_null
- serialization:
- INDENT_OUTPUT: true
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: Asia/Shanghai
- logging:
- config: classpath:config/logback-spring.xml
- level:
- cn.cslg.pas.mapper: debug
- #mybatis
- mybatis-plus:
- typeAliasesPackage: cn.cslg.pas.domain
- global-config:
- db-config:
- id-type: AUTO
- logic-delete-value: 0
- logic-not-delete-value: 1
- configuration:
- #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- map-underscore-to-camel-case: true
- cache-enabled: false
- mapper-locations: classpath:mapper/*.xml
|