标签:logging,SpringBoot,配置文件,spring,redis,设置,数据源,连接池 From: https://www.cnblogs.com/wakenight/p/17741522.html
management.endpoints.web.exposure.include=*
#
server.port=8080
#设置banner开关
spring.main.banner-mode=console
#设置logback日志
logging.level.root=error
#设置指定包级别
logging.level.com.wanan.springbootdemo=error
logging.level.com.wanan.springbootdemo.controller=error
#设置日志文件路径
logging.file.name=logs.log
#配置数据源
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/数据库名?serverTimeZone=UTC
spring.datasource.username=root
spring.datasource.password=密码
#配置mybatis8
#扫描mapper映射文件
mybatis.mapper-locations=classpath:mapper/*.xml
#实体类包路径
mybatis.type-aliases-package=com.wanan.springbootdemo.entity
#设置sql语句
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
#解决swagger2不兼容springboot2.7.x版本问题
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
#配置redis
#设置redis服务器ip地址(必填)
spring.redis.host=127.0.0.1
#设置redis服务器监听端口号(必填)
spring.redis.port=6379
#设置redis连接数据库编号
spring.redis.database=0
#设置数据源连接池最大连接数
spring.redis.jedis.pool.max-active=200
#数据源连接池最大阻塞等待时间(负值表示没有限制)
spring.redis.jedis.pool.max-wait=-1
#数据源连接池最大空闲连接数
spring.redis.jedis.pool.max-idle=10
#数据源连接池最小空闲连接数
spring.redis.jedis.pool.min-idle=0
#数据源连接池超时时长
spring.redis.timeout=12000ms