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