You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.2 KiB
Properties

3 years ago
# 线上测试环境
server.port=9998
#spring.datasource.url=jdbc:mysql://localhost/vue-udidl?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
spring.datasource.url=
spring.datasource.username=
spring.datasource.password=
server.servlet.context-path=
logging.level.com.glxp.udidl.admin.dao=debug
#公共文件的配置
# 上传的地址
public-file.uploadUrl=
# 资源的域名
public-file.domain=
# 跨域设置
cors.allowed-origins=http://test.com
cors.allowed-headers=Content-Type,ADMIN_ID,ADMIN_TOKEN
cors.allowed-methods=GET,POST,PUT,DELETE,PATCH,OPTIONS
# Redis数据库索引默认为0
spring.redis.database=0
# Redis服务器地址
spring.redis.host=localhost
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码默认为空
#spring.redis.password=
#连接池最大连接数(使用负值表示没有限制)
#spring.redis.jedis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
#spring.redis.jedis.pool.max-wait=
# 连接池中的最大空闲连接
#spring.redis.jedis.pool.max-idle=8
# 连接池中的最小空闲连接
#spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
#spring.redis.timeout=0