1234567891011121314151617181920212223242526272829303132333435 |
- server:
- tomcat:
- uri-encoding: UTF-8
- max-threads: 800
- min-spare-threads: 30
- spring:
- application.name: images
- profiles.active: prod
- mybatis-plus:
-
- typeAliasesPackage: cn.com.taiji.**.domain
-
- mapperLocations: classpath*:mapper/**/*Mapper.xml
-
-
-
-
-
- configuration:
-
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
-
- call-setters-on-nulls: true
-
- cache-enabled: true
- global-config:
- db-config:
- logic-delete-field: delFlag
- logic-delete-value: 1
- logic-not-delete-value: 0
- banner: false
|