application-dev.properties 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. spring.datasource.url=jdbc:mysql://localhost:3306/zh_wms_platform?serverTimezone=GMT%2B8&useSSL=false
  2. spring.datasource.username=root
  3. spring.datasource.password=123456
  4. #spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  5. #spring-session-jdbc-2.6.1.jar!\org\springframework\session\jdbc\schema-mysql.sql
  6. db.schema=imcs_platform
  7. db.manage-schema=information_schema
  8. db.type=mysql
  9. file.type=local
  10. file.base=D:/imcs/file
  11. file.ossEndpoint=
  12. file.ossKey=
  13. file.ossSecret=
  14. file.ossBucketName=
  15. file.domain=
  16. server.port=8081
  17. server.servlet.context-path=/
  18. server.servlet.session.timeout=7200
  19. server.tomcat.basedir=C:/file/temp
  20. #登录成功导航页面
  21. #/admin/index.html 光年风格,多tab标签页
  22. #/page/static/index amis风格,单页面,无tab
  23. index-page=/admin/index.html
  24. # Redis数据库索引(默认为0) 开启sa-token-redis的配置
  25. spring.redis.database=0
  26. # Redis服务器地址
  27. spring.redis.host=127.0.0.1
  28. # Redis服务器连接端口
  29. spring.redis.port=6379
  30. # Redis服务器连接密码(默认为空)
  31. spring.redis.password=123456
  32. # 连接超时时间
  33. spring.redis.timeout=10s
  34. # 连接池最大连接数
  35. spring.redis.lettuce.pool.max-active=200
  36. # 连接池最大阻塞等待时间(使用负值表示没有限制)
  37. spring.redis.lettuce.pool.max-wait=-1ms
  38. # 连接池中的最大空闲连接
  39. spring.redis.lettuce.pool.max-idle=10
  40. # 连接池中的最小空闲连接
  41. spring.redis.lettuce.pool.min-idle=0