GENGEN
主页
vuepress
  • GIT命令
  • python+django
  • vue cli搭建项目
  • babel es6转换es5
  • docker aliyun配置
  • npm 配置
  • linux 常用命令
  • Ubuntu 下Linux 命令
  • github
  • gitee
  • csdn
  • 关于我
主页
vuepress
  • GIT命令
  • python+django
  • vue cli搭建项目
  • babel es6转换es5
  • docker aliyun配置
  • npm 配置
  • linux 常用命令
  • Ubuntu 下Linux 命令
  • github
  • gitee
  • csdn
  • 关于我
  • java基础

    • JDK8 函数式编程
    • JDK8 新特性之Date-Time
    • Servlet 源码分析
    • ArrayList 源码
    • LinkedList 源码
    • HashMap 源码
    • String 源码
    • BigDecimal 源码
    • java 类的加载
    • Class 源码
    • Synchronized锁升级
    • 事务的传播机制
    • knowledge
  • JAVA WEB

    • Java Servlet
    • 权限设计
    • logback日志的链路追踪
  • DATABASE

    • MySQL EXPLAIN详解
    • MySQL 索引
    • MySQL 表锁、行锁
    • MySQL ACID与transcation
    • 分布式事务
    • MySQL MVCC机制
    • Mysql 乐观锁与悲观锁
    • 分布式锁1 数据库分布式锁
    • 分布式锁2 Redis分布式锁
    • 分布式锁3 ZK分布式锁
  • SpringCloud

    • SpringCloud服务注册中心之Eureka
    • SpringCloud服务注册中心之Zookeeper
    • SpringCloud服务调用之Ribbon
    • SpringCloud服务调用之OpenFeign
    • SpringCloud服务降级之Hystrix
    • SpringCloud服务网关之Gateway
    • SpringCloud Config分布式配置中心
    • SpringCloud服务总线之Bus
    • SpringCloud消息驱动之Stream
    • SpringCloud链路追踪之Sleuth
    • SpringCloud Alibaba Nacos
    • SpringCloud Alibaba Sentinel
  • Spring

    • SpringBoot
    • Spring-data-jpa入门
    • SpringCloud问题
    • dispatcherServlet 源码分析
    • @SpringBootApplication注解内部实现与原理
    • spring启动初始化初始化
  • 中间件

    • 分布式协调服务器Zookeeper
    • 服务治理Dubbo
    • 分布式配置管理平台Apollo
    • 消息中间件框架Kafka
    • 分布式调度平台ElasticJob
    • 可视化分析工具Kibana
    • ElacticSearch 基础
    • ElacticSearch进阶
    • ElacticSearch集成
  • 环境部署

    • 应用容器引擎Docker
    • DockerCompose服务编排
    • 负载均衡Nginx
    • Nginx的安装配置
    • K8S基础
  • 代码片段

    • listener 监听模式
    • spingboot 整合redis
    • XSS过滤
    • profile的使用
    • ConfigurationProperties注解
  • 设计模式

    • 工厂模式
    • 单例模式
    • 装饰者模式
    • 适配器模式
    • 模板方法模式
    • 观察者模式
  • 读书笔记

    • 《Spring in Action 4》 读书笔记
    • 《高性能mysql》 读书笔记
  • NoSQL

    • Redis基础
    • Redis高级
    • Redis集群
    • Redis应用
  • MQ

    • rabbitMQ基础
    • rabbitMQ高级
    • rabbitMQ集群
  • JVM

    • JVM体系架构概述
    • 堆参数调整
    • GC 分代收集算法
    • JVM 垃圾回收器
    • JVM 相关问题
  • JUC

    • JUC总览
    • volatile关键字
    • CAS
    • ABA问题
    • collections包下线程安全的集合类
    • Lock 锁
    • LockSupport
    • AQS
    • Fork/Join分支框架
    • JUC tools
    • BlockingQueue 阻塞队列
    • Executor 线程池
    • CompletableFuture
    • 死锁以及问题定位分析
  • Shell

    • shell命令
    • shell基础
  • Activiti

    • IDEA下的Activiti HelloWord
    • 流程定义的CRUD
    • 流程实例的执行
    • 流程变量
  • VUE

    • vue基础
    • vue router
    • Vuex
    • Axios 跨域
    • dialog 弹出框使用
    • vue 动态刷新页面
    • vue 封装分页组件
    • vue 动态菜单
    • vue 常用传值
  • Solidity 智能合约

    • Solidity 基础
    • Solidity ERC-20
    • Solidity 101
  • English

    • 时态

@ConfigurationProperties获取配置文件值

  • 在编写项目代码时,我们要求更灵活的配置,更好的模块化整合。在 Spring Boot 项目中,为满足以上要求,我们将大量的参数配置在 application.properties 或 application.yml 文件中,通过 @ConfigurationProperties 注解,我们可以方便的获取这些参数值

编写配置类

/**
 * @author wang.song
 * @date 2020-12-09 14:54
 * @Desc  获取properties中 spring.private.redis前缀的值
 */
@ConfigurationProperties(prefix = "spring.private.redis")
@Component
@Data
public class MyRedisProperties {
    /**
     * 模式
     */
    private Integer mode;
    /**
     * 密码
     */
    private String password;
    /**
     * 单机HOST:PORT
     */
    private String hostPort;
    /**
     * 单机port
     */
    private String port;
    /**
     * 哨兵名称
     */
    private String sentinelName;
    /**
     * 哨兵节点
     */
    private String sentinelnodes;
}

@EnableConfigurationProperties 进行注册

/**
 * @author wang.song
 * @date 2020-12-09 11:50
 * @Desc redisson 配置
 */
@Slf4j
@Configuration
@EnableConfigurationProperties(MyRedisProperties.class)
public class RedissonConfiguration {
    /**
     * 构建前缀
     */
    private static final String SENTINEL_PREFIX = "redis://";

    private static Config config = new Config();

    private static  Redisson redisson;


    @Bean
    @ConditionalOnMissingBean(RedissonClient.class)
    MyRedisProperties getProperties(MyRedisProperties myRedisProperties) {
        createRedisson(myRedisProperties);
        return myRedisProperties;
    }


    private void createRedisson(MyRedisProperties myRedisProperties) {
        Integer mode = myRedisProperties.getMode();
        setConfig(mode, myRedisProperties);
        redisson=(Redisson) Redisson.create(config);
    }

    public static Redisson getRedisson(){
        return redisson;
    }


    /**
     * 根据配置文件获取redis模式
     *
     * @param type
     * @param myRedisProperties
     */
    private void setConfig(Integer type, MyRedisProperties myRedisProperties) {
        switch (type) {
            case 1:
                //单机redis
                config.useSingleServer().setAddress(SENTINEL_PREFIX + myRedisProperties.getHostPort()).setPassword(myRedisProperties.getPassword());
                break;
            case 2:
                //哨兵
                String[] split = myRedisProperties.getSentinelnodes().split(",");
                List<String> arrayList = Lists.newArrayList();
                for (String sp : split) {
                    arrayList.add(SENTINEL_PREFIX + sp);
                }
                String[] strings = arrayList.toArray(new String[arrayList.size()]);
                config.useSentinelServers().addSentinelAddress(strings)
                        .setMasterName(myRedisProperties.getSentinelName()).setPassword(myRedisProperties.getPassword()).setDatabase(0);
                break;
            case 3:
                //TODO 集群
                config.useClusterServers().addNodeAddress(
                        "redis://172.29.3.245:6375", "redis://172.29.3.245:6376", "redis://172.29.3.245:6377",
                        "redis://172.29.3.245:6378", "redis://172.29.3.245:6379", "redis://172.29.3.245:6380")
                        .setPassword("a123456").setScanInterval(5000);
                break;
            default:
                //默认单机
                config.useSingleServer().setAddress("redis://172.0.0.1:6379");
        }
    }

}
Last Updated:
Contributors: 88395515, wangsong, wangs
Prev
profile的使用