cms-web-prod.properties 841 B

12345678910111213141516171819202122232425262728293031
  1. #出现错误时, 直接抛出异常
  2. spring.mvc.throw-exception-if-no-handler-found=true
  3. #不要为我们工程中的资源文件建立映射
  4. spring.resources.add-mappings=false
  5. # http encoding
  6. spring.http.encoding.charset=UTF-8
  7. spring.http.encoding.force=true
  8. spring.http.encoding.enabled=true
  9. # cms 管理端 会话管理 信息
  10. jwt.header= X-Token
  11. jwt.cookie= X-Cookie
  12. jwt.secret= tomas
  13. jwt.expiration= 3600
  14. # 执行异步任务的 线程池大小
  15. cms.threadPoolAsyncTaskExecutor.thread.size=16
  16. #logging.level.root=debug
  17. ## redis 配置
  18. spring.redis.host=r-2ze3b84e6309c7d4.redis.rds.aliyuncs.com
  19. spring.redis.port=6379
  20. spring.redis.password=Lingj20170915
  21. spring.redis.timeout=3000
  22. spring.redis.pool.max-idle=8
  23. spring.redis.pool.min-idle=0
  24. spring.redis.pool.max-active=8
  25. spring.redis.pool.max-wait=-1
  26. spring.redis.key.prefix=cms-web