SpringBoot2.0 生成组建和读写配置文件
Posted 永不飞xiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot2.0 生成组建和读写配置文件相关的知识,希望对你有一定的参考价值。
@Component 生成组建
@ConfigurationProperties(prefix="redis") 读写redis配置文件
application.properties配置文件
#redis redis.host=127.0.0.1 redis.port=6379 redis.timeout=3 redis.password= redis.poolMaxTotal=10 redis.poolMaxIdle=10 redis.poolMaxWait=3
package com.java.seckill.redis; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties(prefix="redis") @AllArgsConstructor @NoArgsConstructor @Data public class RedisConfig { private String host; private Integer port; private Integer timeout; private String password; private Integer poolMaxTotal; private Integer poolMaxIdle; private Integer poolMaxWait; }
以上是关于SpringBoot2.0 生成组建和读写配置文件的主要内容,如果未能解决你的问题,请参考以下文章
springboot2.0.3:读写分离,使用AOP根据方法名动态切换数据源。
springboot2.0入门-- springboot使用mybatis-generator自动代码生成