# SpringBoot 自动配置
Condition
Condition 是在 Spring4.0 增加的条件判断功能,通过这个功能可以实现选择性的创建 Bean 操作。
思考问题:
SpringBoot 是如何知道要创建哪个 Bean 的?比如 SpringBoot 是如何知道要创建 RedisTemplate 的?我们导入了 redis-starter 起步依赖,然后 SpringBoot 就帮我创建了 RedisTemplate 了,那么如果我没有导入 redis-starter 起步依赖那 SpringBoot 会不会帮我创建 RedisTemplate 呢,SpringBoot 怎么知道我到底导没导这个起步依赖呢?这些问题要解决就是 Condition 这么一个功能
@SpringBootApplication | |
public class ConditionApplication { | |
public static void main(String[] args) { | |
// 启动 SpringBoot 的应用,返回 Spring 的 IOC 容器 | |
ConfigurableApplicationContext context = SpringApplication.run(ConditionApplication.class, args); | |
//1. 获取 Bean,redisTemplate | |
Object redisTemplate = context.getBean("redisTemplate"); | |
System.out.println(redisTemplate); | |
} | |
} |
运行程序后报错了
原因:没有导入 redis-starter 而 SpringBoot 找不到这个依赖就报错了
在 pom.xml 文件中导入 redis-starter 依赖
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-data-redis</artifactId> | |
</dependency> |
导入依赖后再次运行 SpringBoot 启动类
结果:
org.springframework.data.redis.core.RedisTemplate@228cea97
需求:
在 SpringBoot 的 IOC 容器中有一个 User 的 Bean,现要求:
- 导入 Jedis 坐标后,加载该 Bean,没导入,则不加载。
代码演示:
创建两个类
config 类
@Configuration | |
public class UserConfig { | |
@Bean | |
public User user() { | |
return new User(); | |
} | |
} |
User 类
public class User { | |
} |
运行启动类获取 User 的 Bean
@SpringBootApplication | |
public class ConditionApplication { | |
public static void main(String[] args) { | |
// 启动 SpringBoot 的应用,返回 Spring 的 IOC 容器 | |
ConfigurableApplicationContext context = SpringApplication.run(ConditionApplication.class, args); | |
//1. 获取 Bean,redisTemplate | |
Object user = context.getBean("user"); | |
System.out.println(user); | |
} | |
} |
运行结果
com.condition.conditiondemo.domain.User@3964d79
创建一个 ClassCondition 类实现 Condition 接口并重写方法
import org.springframework.context.annotation.Condition; | |
import org.springframework.context.annotation.ConditionContext; | |
import org.springframework.core.type.AnnotatedTypeMetadata; | |
public class ClassCondition implements Condition { | |
@Override | |
public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) { | |
return false; | |
} | |
} |
在 UserConfig 类中使用 @Conditional (ClassCondition.class) 来指定配置类后犹豫重写方法返回的是 false 表示 SpringBoot 找不到则运行报错。
import com.condition.conditiondemo.condition.ClassCondition; | |
import com.condition.conditiondemo.domain.User; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Conditional; | |
import org.springframework.context.annotation.Configuration; | |
@Configuration | |
public class UserConfig { | |
@Bean | |
@Conditional(ClassCondition.class) | |
public User user() { | |
return new User(); | |
} | |
} |
运行启动类获取 User 的 Bean
@SpringBootApplication | |
public class ConditionApplication { | |
public static void main(String[] args) { | |
// 启动 SpringBoot 的应用,返回 Spring 的 IOC 容器 | |
ConfigurableApplicationContext context = SpringApplication.run(ConditionApplication.class, args); | |
//1. 获取 Bean,redisTemplate | |
Object user = context.getBean("user"); | |
System.out.println(user); | |
} | |
} |
运行结果
如果将 Condition 的重写方法中改为返回 true 则运行 SpringBoot 启动类可以找到 User 的 Bean 对象不报错
# 需求 1
需求:导入 jedis 坐标后创建 Bean
导入 jedis 坐标到 pom.xml 文件中
<dependency> | |
<groupId>redis.clients</groupId> | |
<artifactId>jedis</artifactId> | |
<version>3.7.0</version> | |
</dependency> |
ClassCondition 类
public class ClassCondition implements Condition { | |
@Override | |
public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) { | |
//1. 导入 jedis 坐标后创建 Bean | |
// 思路:判断 redis.clients.jedis.Jedis.class 文件是否存在 | |
// 定义一个开关返回最终结果 | |
boolean flag = true; | |
try{ | |
Class<?> cls = Class.forName("redis.clients.jedis.Jedis"); | |
}catch (ClassNotFoundException e) { | |
flag = false; | |
e.printStackTrace(); | |
} | |
return flag; | |
} | |
} |
启动类
@SpringBootApplication | |
public class ConditionApplication { | |
public static void main(String[] args) { | |
// 启动 SpringBoot 的应用,返回 Spring 的 IOC 容器 | |
ConfigurableApplicationContext context = SpringApplication.run(ConditionApplication.class, args); | |
//1. 获取 Bean,redisTemplate | |
Object user = context.getBean("user"); | |
System.out.println(user); | |
} | |
} |
运行结果
# 需求 2
将类的判断定义为动态的,判断哪个字节码文件存在可以动态指定。
# 第一步自定义注解:
目录结构
Condition 类
import org.springframework.context.annotation.Condition; | |
import org.springframework.context.annotation.ConditionContext; | |
import org.springframework.core.type.AnnotatedTypeMetadata; | |
public class ClassCondition implements Condition { | |
@Override | |
public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) { | |
boolean flag = true; | |
try{ | |
Class<?> cls = Class.forName("redis.clients.jedis.Jedis"); | |
} catch(ClassNotFoundException e) { | |
e.printStackTrace(); | |
flag = false; | |
} | |
return flag; | |
} | |
} |
ConditionOnClass 注解类
import org.springframework.context.annotation.Conditional; | |
import java.lang.annotation.*; | |
@Target({ElementType.TYPE, ElementType.METHOD}) | |
@Retention(RetentionPolicy.RUNTIME) | |
@Documented | |
@Conditional(ClassCondition.class) | |
public @interface ConditionOnClass { | |
String[] value(); | |
} |
UserConfig 类
import com.dkx.condition.ConditionOnClass; | |
import com.dkx.domain.User; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
@Configuration | |
public class UserConfig { | |
@Bean | |
// @Conditional(ClassCondition.class) | |
@ConditionOnClass("redis.clients.jedis.Jedis") | |
public User user() { | |
return new User(); | |
} | |
} |
User 类
public class User { } |
SpringBoot 启动类
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.context.ConfigurableApplicationContext; | |
@SpringBootApplication | |
public class SpringBootSeniorApplication { | |
public static void main(String[] args) { | |
ConfigurableApplicationContext run = SpringApplication.run(SpringBootSeniorApplication.class, args); | |
Object user = run.getBean("user"); | |
System.out.println(user); | |
} | |
} |
运行结果:
<span alt='solid'> 总结 </span>:
这样我们就可以通过注解的方式来获取自己定义的字符串或者类是否存在了而不用再 Condition 中写死了,那么怎获取重写方法 matches 中 的值 到 反射中 以 动态指定字节码文件呢?
动态指定字节码文件代码演示:
修改 ClassCondition 代码
import org.springframework.context.annotation.Condition; | |
import org.springframework.context.annotation.ConditionContext; | |
import org.springframework.core.type.AnnotatedTypeMetadata; | |
import java.util.Map; | |
public class ClassCondition implements Condition { | |
/** | |
* @param context 上下文对象,用于获取环境,IOC 容器,ClassLoader 对象 | |
* @param metadata 注解元对象,可以用于获取注解定义的属性值 | |
* @return | |
*/ | |
@Override | |
public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) { | |
// 导入通过注解属性值 value 指定坐标后创建 Bean | |
// 获取注解属性 value | |
Map<String, Object> map = metadata.getAnnotationAttributes(ConditionOnClass.class.getName()); | |
//System.out.println (map); //map 集合 输出的结果 里面是指定的路径 {value=[redis.clients.jedis.Jedis]} | |
String[] value = (String[]) map.get("value"); | |
boolean flag = true; | |
try{ | |
for(String item : value) { | |
Class<?> cls = Class.forName(item); | |
} | |
} catch(ClassNotFoundException e) { | |
e.printStackTrace(); | |
flag = false; | |
} | |
return flag; | |
} | |
} |
运行结果:
这样就完成了动态的指定路径获取字节码文件了
那么这个功能有什么用呢?
我们在回过头来看 如下问题:
SpringBoot 是如何知道要创建哪个 Bean 的?比如 SpringBoot 是如何知道要创建 RedisTemplate 的?
其实就是通过 Condition 来判断有没有导入 Redis 的 Starter 如果导入了则帮我们创建,SpringBoot 中给我们提供了非常多的 ConditionalOnXXX 的接口
在 spring-boot-autoconfigure 中的 condition 目录中可以看到很多的 ConditionalOnXXX 的接口可以使用
随便演示一个 ConditionalOnXXX 接口比如演示 ConditionalOnProperty 这个接口
<span alt='solid'> 功能 </span>:当配置文件中的键和值与注解指定的键和值存在且对应则加载 Bean
import com.dkx.domain.User; | |
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
@Configuration | |
public class UserConfig { | |
@Bean | |
@ConditionalOnProperty(name = "dkx", havingValue = "666") | |
public User user() { | |
return new User(); | |
} | |
} |
配置文件
运行启动类
@SpringBootApplication | |
public class SpringBootSeniorApplication { | |
public static void main(String[] args) { | |
ConfigurableApplicationContext run = SpringApplication.run(SpringBootSeniorApplication.class, args); | |
Object user = run.getBean("user"); | |
System.out.println(user); | |
} | |
} |
运行结果:
将配置文件中添加注解对应的键和值
运行结果
Condition - 小结:
- 自定义条件:
- 定义条件类:自定义类实现 Condition 接口,重写 matches 方法,在 metches 方法中进行逻辑判断,返回 boolean 值,matches 方法两个参数:
- context:上下文对象,可以获取属性值,获取类加载器,获取 BeanFactory 等。
- metadata:元数据对象,用于获取注解属性
- 判断条件:在初始化 Bean 时,使用 <span alt='solid'>@Conditional (条件类.class) </span > 注解
- SpringBoot 提供的常用条件注解:
- <span alt='solid'>ConditionalOnProperty</span>:判断配置文件中是否有对应属性和值才初始化 Bean
- <span alt='solid'>ConditionalOnClass</span>:判断环境中是否有对应字节码文件才初始化 Bean
- <span alt='solid'>ConditionalOnMissingBean</span>:判断环境中没有对应 Bean 才初始化 Bean