一、作用域

1.单例模式(Spring默认机制)
<bean id="address" class="com.spring.pojo.Address">
<property name = "name" value = "小申" scope="singleton">
</bean>
2.原型模式:每次从容器中get的时候,都会产生一个新对象!
<bean id="accountservice" class="com.something.Defau1tAccountservice"
scope="prototype"/>
3.其余的四个只能在web开发中使用到
二、自动装配
·自动装配是Spring满足bean依赖一种方式!
. Spring会在上下文中自动寻找,并自动给bean装配属性!
在Spring中有三种装配的方式
1.在xml中显示的配置
2.在java中显示配置
3.隐式的自动装配bean【重要】
byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid !
byType:会自动在容器上下文中查找,和自己对象属性类型相同的bean !可以不用定义id,但是class必须是唯一的
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="dog" class="com.spring.pojo.Dog"/>
<bean id="cat" class="com.spring.pojo.Cat"/>
<bean id="person" class="com.spring.pojo.Person" autowire="byType">
<property name="person" value="小申"/>
</bean>
</beans>
使用注解实现自动装配
jdk1.5支持的注解,Spring2.5就支持注解了!
The introduction of annotation-based configuration raised the question of whether this approach is "better"than XML.
要使用注解须知:
1.导入约束 context约束
2.配置注解的支持
<?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>
@Autowired
直接在属性上使用即可!也可以在set方式上使用!
使用Autowired我们可以不用编写Set方法了,前提是你这个自动装配的属性在IOC(Spring)容器中存在,且符合名字byname!
科普:
@Nu11able 字段标记了这个注解,说明这个字段可以为nu11;
public @interface Autowired {
boolean required()default true;
}
package com.spring.pojo;
import org.springframework.beans.factory.annotation.Autowired;
public class Person {
@Autowired(required = true)
private Dog dog;
@Autowired
private Cat cat;
private String person;
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
public String getPerson() {
return person;
}
public void setPerson(String person) {
this.person = person;
}
}
@Qualifier
@Autowired是根据类型自动装配的,加上@Qualifier则可以根据byName的方式自动装配
@Qualifier不能单独使用。
@Resource
@Resource如有指定的name属性,先按该属性进行byName方式查找装配;
其次再进行默认的byName方式进行装配;
如果以上都不成功,则按byType的方式自动装配。
都不成功,则报异常。
package com.spring.pojo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import javax.annotation.Resource;
public class Person {
@Autowired(required = true)
@Qualifier(value="dog1")
private Dog dog;
@Resource
private Cat cat;
private String person;
public Dog getDog() {
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public Cat getCat() {
return cat;
}
public void setCat(Cat cat) {
this.cat = cat;
}
public String getPerson() {
return person;
}
public void setPerson(String person) {
this.person = person;
}
}
小结
@Autowired与@Resource异同:
1、@Autowired与@Resource都可以用来装配bean。都可以写在字段上,或写在setter方法上。
2、@Autowired默认按类型装配(属于spring规范),默认情况下必须要求依赖对象必须存在,如果要允许null 值,可以设置它的required属性为false,如:@Autowired(required=false) ,如果我们想使用名称装配可以结合@Qualifier注解进行使用
3、@Resource(属于J2EE复返),默认按照名称进行装配,名称可以通过name属性进行指定。如果没有指定name属性,当注解写在字段上时,默认取字段名进行按照名称查找,如果注解写在setter方法上默认取属性名进行装配。当找不到与名称匹配的bean时才按照类型进行装配。但是需要注意的是,如果name属性一旦指定,就只会按照名称进行装配。
它们的作用相同都是用注解方式注入对象,但执行顺序不同。@Autowired先byType,@Resource先byName。
本文介绍了Spring框架中Bean的作用域,包括单例和原型模式,以及在Web开发中的其他作用域。同时,详细阐述了自动装配的概念,包括通过XML配置的byName和byType方式,以及注解方式的@Autowired和@Resource的使用。通过示例展示了如何在XML和Java中配置自动装配,并对比了@Autowired和@Resource的区别。最后,提到了@Qualifier和@Nullable在自动装配中的应用。
602

被折叠的 条评论
为什么被折叠?



