2021-04-19 00:04:14 +08:00
|
|
|
server.port=9999
|
2021-04-07 23:53:57 +08:00
|
|
|
#登录超时-秒
|
|
|
|
|
server.servlet.session.timeout=36000
|
|
|
|
|
#服务路径
|
|
|
|
|
server.servlet.context-path=/jshERP-boot
|
|
|
|
|
#数据库连接
|
2021-04-08 00:33:30 +08:00
|
|
|
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/jsh_erp?useUnicode=true&characterEncoding=utf8&useCursorFetch=true&defaultFetchSize=500&allowMultiQueries=true&rewriteBatchedStatements=true&useSSL=false
|
2021-04-07 23:53:57 +08:00
|
|
|
spring.datasource.driverClassName=com.mysql.jdbc.Driver
|
|
|
|
|
spring.datasource.username=root
|
|
|
|
|
spring.datasource.password=123456
|
|
|
|
|
#mybatis-plus配置
|
|
|
|
|
mybatis-plus.mapper-locations=classpath:./mapper_xml/*.xml
|
|
|
|
|
# Redis
|
|
|
|
|
spring.redis.host=127.0.0.1
|
|
|
|
|
spring.redis.port=6379
|
|
|
|
|
spring.redis.password=1234abcd
|
|
|
|
|
#租户对应的角色id
|
|
|
|
|
manage.roleId=10
|
|
|
|
|
#租户允许创建的用户数
|
|
|
|
|
tenant.userNumLimit=1000000
|
|
|
|
|
#租户允许创建的单据数
|
|
|
|
|
tenant.billsNumLimit=100000000
|
|
|
|
|
#演示模式开关-默认关闭:false
|
|
|
|
|
demonstrate.open=false
|
|
|
|
|
#插件配置
|
|
|
|
|
plugin.runMode=prod
|
|
|
|
|
plugin.pluginPath=plugins
|
|
|
|
|
plugin.pluginConfigFilePath=pluginConfig
|