42 lines
989 B
Properties
42 lines
989 B
Properties
# 引入子配置文件
|
|
spring.config.import=\
|
|
classpath:config/test/redis.properties,\
|
|
classpath:config/test/xxljob.properties,\
|
|
classpath:config/test/mongo.properties
|
|
|
|
|
|
# 项目相关配置
|
|
ff.name=FF-Fetcher
|
|
ff.version=0.0.1
|
|
ff.copyrightYear=2024
|
|
ff.profile=D:/ff/uploadPath
|
|
ff.addressEnabled=false
|
|
ff.captchaType=math
|
|
|
|
# 开发环境配置
|
|
server.port=9082
|
|
server.servlet.context-path=/
|
|
server.tomcat.uri-encoding=UTF-8
|
|
server.tomcat.accept-count=1000
|
|
server.tomcat.threads.max=800
|
|
server.tomcat.threads.min-spare=100
|
|
|
|
# 日志配置
|
|
logging.level.com.ff=debug
|
|
logging.level.org.springframework=warn
|
|
|
|
# 用户配置
|
|
user.password.maxRetryCount=5
|
|
user.password.lockTime=10
|
|
|
|
# Spring配置
|
|
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
|
|
spring.messages.basename=i18n/messages
|
|
spring.servlet.multipart.max-file-size=20MB
|
|
spring.servlet.multipart.max-request-size=20MB
|
|
|
|
# Token配置
|
|
token.header=Authorization
|
|
token.secret=abcdefghijklmnopqrstuvwxyz
|
|
token.expireTime=10080
|