| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- server:
- servlet:
- context-path: /
- port: 8907
- spring:
- thymeleaf:
- cache: false
- mode: HTML5
- aop:
- auto: true
- proxy-target-class: true
- application:
- name: IDS
- servlet:
- multipart:
- max-file-size: 1000MB
- max-request-size: 1000MB
- profiles:
- active: dev
- 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:
- com.cslg.ids.mapper: debug
- mybatis-plus:
- typeAliasesPackage: com.cslg.ids.entity
- global-config:
- db-config:
- id-type: AUTO
- logic-delete-value: 0
- logic-not-delete-value: 1
- update-strategy: ignored
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- mapper-locations: classpath:mapper/*.xml
- queueName: emailProd.queue
|