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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 本地环境
server.port = 9991
spring.datasource.driver-class-name = com.mysql.cj.jdbc.Driver
spring.datasource.jdbc-url = jdbc:mysql://127.0.0.1:3306/udiwms?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
#spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/udiwms_new?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
spring.datasource.username = root
#spring.datasource.password=123456
spring.datasource.password = root
server.servlet.context-path =
logging.level.com.glxp.api.admin.dao = debug
logging.level.com.glxp.api.admin.erp.second = debug
#logback配置
logging.path = output/logs
# 不指定的情况下默认生成在项目根目录,按照配置生成所需的日志名称
logging.file = D:/udi.log
#UDI数据下载
UDI_SERVER_URL = https://www.udims.com/UDI_DL_Server
#UDI_SERVER_URL=http://127.0.0.1:9994
##端口号
# Redis数据库索引( 默认为0)
spring.redis.database = 0
# Redis服务器地址
spring.redis.host = 127.0.0.1
# Redis服务器连接端口
spring.redis.port = 6379
# Redis服务器连接密码( 默认为空)
spring.redis.password =
#连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active = 8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait = -1
# 连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle = 8
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle = 0
# 连接超时时间(毫秒)
spring.redis.jedis.timeout = 300
spring.jackson.date-format = yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone = GMT+8