| 12345678910111213141516171819 |
- spring:
- servlet:
- multipart:
- # 设置单个文件大小
- max-file-size: 20MB
- # 设置单次请求文件的总大小
- max-request-size: 50MB
- profiles:
- active: test
- logging:
- config: classpath:logback-spring.xml
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #开启sql日志
- jasypt:
- encryptor:
- password: 4dage168... #添加的盐
- iv-generator-classname: org.jasypt.iv.NoIvGenerator
|