Spring注解实现Bean自动装配示例详解

网友投稿 229 2023-01-26

Spring注解实现Bean自动装配示例详解

何为自动装配

自动装配是 Spring 满足 bean 依赖的一种方式。

在使用 Spring 配置 bean 时,我们都要给配置的 bean 的属性设置一个值,如果不手动设置则都是空。而自动的好处就在于,我们不用手动去设置一个值,spring 会在上下文中自动寻找并装配合http://适的值。

本文主要介绍了Spring注解Bean自动装配的相关内容,下面话不多少了,来一起看看详细的介绍吧

使用须知:

1.导入约束:context约束

2.配置注解的支持: context:annotation-config/

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xmlns:context="http://springframework.org/schema/context"

xsi:schemaLocation="http://springframework.org/schema/beans

https://springframework.org/schema/beans/spring-beans.xsd

http://springframework.org/schema/context

https://springframework.org/schema/context/spring-context.xsd">

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xmlns:context="http://springframework.org/schema/context"

xsi:schemaLocation="http://springframework.org/schema/beans

https://springframework.org/schema/beans/spring-beans.xsd

http://springframework.org/schema/context

https://springframework.org/schema/context/spring-context.xsd">

@Autowired

​ 通过ByType的方式实现自动装配,且必须要求该对象存在。

​ 直接在属性上使用,也可以在set方法上使用。

​ 使用Autowired时,可以不用编写set方法,前提是你这个自动装配的属性在IOC容器中存在,且符合Byname方式

@Autowired

private Cat cat;

@Qualifier

@Autowired

@Qualifier(value = "dog111")

private Dog dog;

​ 如果@Autowired自动装配的环境比较复杂,可以使用@Qualifier来辅助@Autowired完成自动装配,

​ 通过@Qualifier(value = “dog111”)指定Bean的ID来装配。

总结

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:spring schedule配置多任务动态cron(增删启停)
下一篇:免费api的好处(api付费)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~