bootstrap.yml 479 B

12345678910111213141516171819
  1. spring:
  2. servlet:
  3. multipart:
  4. # 设置单个文件大小
  5. max-file-size: 20MB
  6. # 设置单次请求文件的总大小
  7. max-request-size: 50MB
  8. profiles:
  9. active: test
  10. logging:
  11. config: classpath:logback-spring.xml
  12. mybatis-plus:
  13. configuration:
  14. log-impl: org.apache.ibatis.logging.stdout.StdOutImpl #开启sql日志
  15. jasypt:
  16. encryptor:
  17. password: 4dage168... #添加的盐
  18. iv-generator-classname: org.jasypt.iv.NoIvGenerator