123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- server:
- servlet:
- context-path: /
- port: 8879
- # 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: testNetIn
- 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
- update-strategy: ignored
- configuration:
- #log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- map-underscore-to-camel-case: true
- cache-enabled: false
- mapper-locations: classpath:mapper/*.xml
- queueName: emailProd.queue
|