bootstrap.yml 499 B

1234567891011121314151617181920
  1. spring:
  2. servlet:
  3. multipart:
  4. # 设置单个文件大小
  5. max-file-size: -1
  6. # 设置单次请求文件的总大小
  7. max-request-size: -1
  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: xxx #添加的盐
  18. algorithm: PBEWithMD5AndDES
  19. iv-generator-classname: org.jasypt.iv.NoIvGenerator