application.properties.temp 801 B

123456789101112131415161718192021222324252627282930
  1. #后台服务器的tomcat端口
  2. server.port=9001
  3. #服务器是否调试模式
  4. server.debug.mode=true
  5. #是否为后台主服务器
  6. server.backstage.main=true
  7. #热更配置文件夹
  8. fix.upload.design.folder=/uploadfiles/design/
  9. #热更代码文件夹
  10. fix.upload.clazzs.folder=/uploadfiles/clazzs/
  11. #后台加密秘钥
  12. backstage.key=xiugouyouxi2023
  13. #主后台的地址
  14. backstage.main.url=http://127.0.0.1:9001
  15. #数据库配置
  16. database.config.file=file:./config/database.db
  17. #日志输出格式配置
  18. logging.config=file:./config/log4j2.xml
  19. #===================redis基础配置===================
  20. spring.redis.database=1
  21. spring.redis.host=127.0.0.1
  22. spring.redis.password=yy2024
  23. spring.redis.port=6379
  24. # 连接超时时间 单位 ms(毫秒)
  25. spring.redis.timeout=3000