application-dev.properties 1.5 KB

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