第3章—高级装配—条件化的Bean

简介: 条件化的Bean通过活动的profile,我们可以获得不同的Bean。Spring 4提供了一个更通用的基于条件的Bean的创建方式,即使用@Conditional注解。

条件化的Bean

通过活动的profile,我们可以获得不同的Bean。Spring 4提供了一个更通用的基于条件的Bean的创建方式,即使用@Conditional注解。

@Conditional根据满足某个特定的条件创建一个特定的Bean。比如,当某一个jar包在一个类路径下时,自动配置一个或者多个Bean。或者只有一个Bean创建时,才会创建另一个Bean。总的来说,就是根据特定条件来控制Bean的创建行为,这样我们可以利用这个特性进行一些自动配置。

下面的示例将以不同的操作系统作为条件,我们将通过实现Condition接口,并重写其matches方法来构造判断条件。如在Windows系统下运行程序输出dir,Linux下输出ls。

一、判断条件定义

1、判定Windows的条件

package com.home.Cont;

import java.util.Date;
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

//编写Windows的判断类
public class WindowsCondition implements Condition {

    @Override
    public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
        return context.getEnvironment().getProperty("os.name").contains("Windows");
    }

}

2、判定Linux的条件

package com.home.Cont;
import org.springframework.context.annotation.Condition;
import org.springframework.context.annotation.ConditionContext;
import org.springframework.core.type.AnnotatedTypeMetadata;

//编写Linux的判断类
public class LinuxCondition implements Condition {
    @Override
    public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
        return context.getEnvironment().getProperty("os.name").contains("Linux");
    }
}

二、不同系统下的Bean

1、接口

package com.home.Cont;

//不同系统命令的接口
public interface ListService {
    public String showListCmd();
}

2、Windows下所要创建的Bean

package com.home.Cont;
//window下的命令
public class WindowsListService implements ListService {
    @Override
    public String showListCmd() {
        return "dir";
    }

}

3、Linux下所要创建的Bean

package com.home.Cont;
//Linux下的命令
public class LinuxListService implements ListService {
    @Override
    public String showListCmd() {
        return "ls";
    }
}

三、配置类

package com.home.Cont;

import org.springframework.context.annotation.*;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;

@Configuration
@ComponentScan(basePackages="com.home.Cont")
public class ConditionConfig {

    @Bean
    @Conditional(LinuxCondition.class)// 使用@Conditional注解,符合Linux条件就实例化LinuxListService
    public ListService linuxListService() {
        return new LinuxListService();
    }

    @Bean
    @Conditional(WindowsCondition.class)// 使用@Conditional注解,符合Windows条件就实例化WindowsListService
    public ListService windowsListService() {
        return new WindowsListService();
    }
}

四、测试类

package com.home.Cont;

import org.junit.After;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class SpringConditionalTest {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ConditionConfig.class);

    @Test
    public void contextTest() {
        ListService listService = context.getBean(ListService.class);

        System.out.println(context.getEnvironment().getProperty("os.name")
                + "系统下的列表命令为:"
                + listService.showListCmd());;
    }

    @After
    public void closeContext() {
        context.close();
    }

}

最后的运行结果为:

img_5cd66325f949601c47576fcc71239d5e.png
image
相关文章
|
6月前
|
Java Spring 容器
Spring注解开发定义bean及纯注解开发模式
Spring注解开发定义bean及纯注解开发模式
55 0
|
5月前
|
Java 测试技术 Spring
深入理解条件装配和条件注解
深入理解条件装配和条件注解
26 5
|
6月前
|
Java API Spring
|
6月前
|
Java
SpringBoot之@Conditional衍生条件装配详解
SpringBoot之@Conditional衍生条件装配详解
81 0
|
6月前
|
存储 Java 开发工具
SpringBoot中Bean的条件装配
本文总结了在SpringBoot中常用的bean装配方法: * profile * conditional * ConditionalOn
67 1
|
自然语言处理 SpringCloudAlibaba Java
Spring条件装配注解:@Conditional及其衍生扩展注解
**条件装配**是`Spring Boot`一大特点,根据是否满足指定的条件来决定是否装配 Bean ,做到了动态灵活性,starter的自动配置类中就是使用@Conditional及其衍生扩展注解@ConditionalOnXXX做到了自动装配的
112 0
|
Java Spring 容器
《SpringBoot系列十二》:如何自定义条件装配(由@ConditionalOnClass推导)
《SpringBoot系列十二》:如何自定义条件装配(由@ConditionalOnClass推导)
357 0
《SpringBoot系列十二》:如何自定义条件装配(由@ConditionalOnClass推导)
|
存储 Java Spring
自定义spring注解使用
自定义spring注解使用+ThreadLocal使用
自定义spring注解使用
|
Java Spring 容器
SpringBoot基础篇Bean之条件注入@Condition使用姿势
前面几篇关于Bean的基础博文中,主要集中在Bean的定义和使用,但实际的情况中有没有一些场景是不加载我定义的bean,或者只有满足某些前提条件的时候才加载我定义的Bean呢? 本篇博文将主要介绍bean的加载中,条件注解@Conditional的相关使用
1034 0
SpringBoot基础篇Bean之条件注入@Condition使用姿势