1.Spring中的三种装配方式
(1)在XML中显示的配置。
(2)在JAVA中显示配置。
(3)隐式的自动装配bean。
2.byName自动装配
<beans>
<bean id="people" class="whatever.people" autowire="byName">
</bean>
<beans>
byName会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid。
3.byType自动装配
<beans>
<bean id="people" class="whatever.people" autowire="byType">
</bean>
<beans>
byName会自动在容器上下文中查找,和自己对象属性类型对应的beanid。所以在使用byType装配的时候要保证每个类型只有一个bean。
4.注解实现自动装配。
JDK1.5支持注解,Spring2.5开始支持注解。
配置文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
</beans>
(1)@autowird
public class MovieRecommender {
private final CustomerPreferenceDao customerPreferenceDao;
@Autowired
public MovieRecommender(CustomerPreferenceDao customerPreferenceDao) {
this.customerPreferenceDao = customerPreferenceDao;
}
// ...
}
不仅可以用于构造方法的自动装配,还能够用于set方法以及定义的对象之前(甚至可以不使用set方法,因为注解的本质是反射)。
(2)@Qualifier(value="dog222")
通过与@autowird一起使用,来指定一个名字不与dog相同的bean,使用起来更加的灵活了。
(3)@Resource
@Resource使用的效果和@autowird一样,只不过@autowird只能通过名字去自动装配,而@Resource会先通过名字去自动装配,如果查找不到的情况下,则会使用类型去装配,使用起来相对来说更加地方便。
同时@Resource还具有选择具体名字的功能,用法如下:
@Resource(name="cat1")
(4)@Component
要使用这个注释,需要在配置文件中声明要查找的包,用法如下:
<context:component-scan base-package="Entity"/>
用在类名的前面,效果等价于在配置文件中写下如下配置:
<bean id="dog" class="Animal.Dog"><bean>
@Component的衍生有三个,在WEB中的MVC架构中:
a.Dao层:【@Repository】
b.Service层:【@Service】
c.Controller层:【@Controller】
这三个注释都与@Component效果一样,后面可以通过添加一下代码,来判定生成时的作用域;
@Scope("singleton")
@Scope("prototype")
(5)@Value
通过这种方法可以直接注解属性,配置如下:
@Value("张良")
private string name;