<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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="user" class="com.xbh.pojo.User">
<property name="name" value="qianqian"/>
bean>
beans>
1、Spring之前创对象的方式
类型 变量名 =new 类型();
2、在Spring中不在使用new关键字创建对象,而是使用< bean>标签
id=变量名
class=new的对象
property相当于给对象中的属性设置一个值
可以看出来,这个创对象的过程就实现了控制反转,使用Spring之后,对象的管理、控制都交给了spring的IOC容器来管理,这样子就改变了传统应用程序是由程序本身创建控制、管理的!总而言之,到了现在,我们彻底的不用再程序中去改动,实现不同的操作,只需要在xml配置文件中进行修改。
org.springframework.beans和org.springframework.context包是Spring框架的IOC容器的基础。
public class UserTest {
@Test
public void test(){
//获取Spring的容器
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//我们的对象现在都在spring中管理了,如果我们要使用,直接从里边取出即可
User user = (User) context.getBean("user");
System.out.println(user.toString());
}
}
输出结果:User{
name='qianqian'}
在配置文件加载的时候,容器中管理的对象就已经初始化了,所以,不论getBean几次,得到的都是同一个对象
User user = (User) context.getBean("user");
可见我们在getBean的时候,就创建了对象
控制台输出----User的无参构造器被调用了
<bean id="user" class="com.xbh.pojo.User">
<constructor-arg index="0" value="倩倩"/>
bean>
控制台输出----User{name='倩倩'}
<bean id="user" class="com.xbh.pojo.User">
<constructor-arg type="java.lang.String" value="我爱倩倩"/>
bean>
控制台输出----User{name='我爱倩倩'}
值得注意的是,基本类型可以直接使用,但是引用类型必须使用全限定名
<bean id="user" class="com.xbh.pojo.User">
<constructor-arg name="name" value="倩倩真好看"/>
bean>
控制台输出----User{name='倩倩真好看'}
<bean id="user" class="com.xbh.pojo.User">
<constructor-arg name="name" value="倩倩真好看"/>
bean>
<alias name="user" alias="user2"/>
控制台输出----User{name='倩倩真好看'}
User user = (User) context.getBean("user2");
System.out.println(user.toString());
import一般用于团队开发使用,他可以将多个配置文件导入合并成一个总的配置文件
<beans>
<import resource="services.xml"/>
<import resource="resources/messageSource.xml"/>
<import resource="/resources/themeSource.xml"/>
beans>
依赖:bean对象的创建依赖于容器!
注入:bean对象中的所有属性都由容器注入
配置xml
<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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="address" class="com.xbh.pojo.Address">bean>
<bean id="student" class="com.xbh.pojo.Student">
<property name="name" value="许宝华"/>
<property name="address" ref="address"/>
<property name="books" >
<array>
<value>红楼梦value>
<value>西游记value>
<value>水浒传value>
array>
property>
<property name="hobby" >
<list>
<value>听歌value>
<value>看电影value>
<value>打篮球value>
list>
property>
<property name="card">
<map>
<entry key="1" value="1的值"/>
<entry key="2" value="2的值"/>
<entry key="3" value="3的值"/>
map>
property>
<property name="games">
<set>
<value>LOLvalue>
<value>CSvalue>
set>
property>
<property name="wife" >
<null/>
property>
<property name="info">
<props>
<prop key="学号">2050412523prop>
<prop key="性别">男prop>
props>
property>
bean>
beans>
@Test
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student =(Student) context.getBean("student");
System.out.println("普通值注入"+student.getName());
System.out.println("Bean注入"+student.getAddress());
System.out.println("数组注入"+student.getBooks());
System.out.println("List注入"+student.getHobby());
System.out.println("Map注入"+student.getCard());
System.out.println("Set注入"+student.getGames());
System.out.println("空值注入"+student.getWife());
System.out.println("Properties配置类注入"+student.getInfo());
System.out.println(student.toString());
}
普通值注入许宝华
Bean注入com.xbh.pojo.Address@44f75083
数组注入[Ljava.lang.String;@2698dc7
List注入[听歌, 看电影, 打篮球]
Map注入{
1=1的值, 2=2的值, 3=3的值}
Set注入[LOL, CS]
空值注入null
Properties配置类注入{
学号=2050412523, 性别=男}
xmlns:p="http://www.springframework.org/schema/p"
p命名空间注入对应着Set的属性注入
<bean id="user" class="com.xbh.pojo.User" p:name="倩倩真好看"/>
注意: p命名空间不如标准XML格式灵活。例如,用于声明属性引用的格式与以结尾的属性发生冲突Ref,而标准XML格式则没有。我们建议您谨慎选择方法,并将其传达给团队成员,以避免同时使用这三种方法生成XML文档。
xmlns:c="http://www.springframework.org/schema/c"
<bean id="user" class="com.xbh.pojo.User" c:name="倩倩真美丽"/>
c命名空间注入对应着构造器注入
在配置文件加载的时候,容器中管理的对象就已经初始化了,所以,不论getBean几次,得到的都是同一个对象
<bean id="user" class="com.xbh.pojo.User" autowire="byName">
<property name="name" value="倩倩"/>
bean>
<bean id="address" class="com.xbh.pojo.Address">bean>
@Test
public void test(){
//获取Spring的上下文对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//我们的对象现在都在spring中管理了,如果我们要使用,直接从里边取出即可
User user = context.getBean("user",User.class);
user.getAddress().show();
System.out.println(user.toString());
}
控制台输出我在家在中国 User{name='倩倩', address=com.xbh.pojo.Address@52525845}
可见控制台的输出内容,完成了自动装配,由于User内部有setAddress()方法,然后会在上下文中找符合set方法后面的值对应的id,如果满足,则进行自动装配
注意:
1.byname的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
2.bytype时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性类型一致
<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>
在bean中为需要自动装配的属性加上注解
@Autowired
:【常用】直接在属性上使用即可,也可以在set方法上使用
使用@Autowired我们可以不在编写Set方法了,前提是你这个自动装配的属性在IOC(Spring)容器中存在,且符合名字byname
public class User {
private String name;
@Autowired
private Address address;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Address getAddress() {
return address;
}
@Autowired
public void setAddress(Address address) {
this.address = address;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
", address=" + address +
'}';
}
}
@Qualifier(value=“xxx”)
:如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=“xxx”)去配合@Autowired的使用,指定一个唯一的bean对象注入
@Resource
:java原生的注解import javax.annotation.Resource
Resource会先通过id查找,如果查找不到在通过类型查找,如果依然查不到的话,则会报错
@Resource和@Autowired的区别
1.都是用来自动装配的,都可以放在属性字段上
2.@Autowired通过byType的方式实现,而且必须要求这个对象存在!【常用】
3.@Resource默认通过byname的方式实现,如果找不到名字,则通过byType实现,如果两个都找不到,则会报错【常用】
使用注解须知:
1、在Spring4之后,要使用注解开发,必须要保证aop的包的导入
2、使用注解需要导入context约束,增加注解的支持
<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:component-scan base-package="com.xbh.pojo"/>
<context:annotation-config/>
beans>
@Component:组件,放在类上,说明这个类被Spring管理了,即bean!
@Component
public class User {
private String name="666";
}
@Component等价于< bean id=“user” class=“com.xbh.pojo.User”/>
@Test
public void test3(){
ApplicationContext context = new ClassPathXmlApplicationContext("newBeans.xml");
User user = context.getBean("user", User.class);
System.out.println(user.name);
}
控制台输出666
@Value:属性注入
@Component
public class User {
@Value("倩倩真好看")
private String name;
//也可以放在set方法上
@Value("倩倩真好看")
public void setName(String name) {
this.name = name;
}
}
@Value等价于< property name=“name” value=“倩倩真好看”/>
@Test
public void test3(){
ApplicationContext context = new ClassPathXmlApplicationContext("newBeans.xml");
User user = context.getBean("user", User.class);
System.out.println(user.getName());
}
控制台输出:倩倩真好看
@Component有几个衍生注解。我们在web开发中,会按照mvc三层架构分层!
这四个注解功能一样,都是代表将某个类注册到Spring中,装配Bean!
@Scope("singleton")
@Scope("prototype")
最佳实践:
1、xml用来管理bean
2、注解只负责完成属性的注入
3、值得注意的是,在使用注解之前一定要让注解生效,必须开启注解的支持
完全不使用Spring的xml配置,全权交给Java来做,JavaConfig是Spring的一个子项目,在Spring4之后,他成为了一个核心功能
@Configuration代表这是一个配置类,等价于beans.xml,代表着他可以干beans.xml里能干的所有事
@Configuration也会被Spring容器托管,注册到容器中,因为他本来就是一个@Component
@Bean注册一个bean,等价于一个bean标签,这个方法的名字的就相当于bean标签的id属性,这个方法的返回值,相当于bean标签的class属性
@Configuration
@ComponentScan("com.xbh.pojo")
@Import(TeacherConfig2.class)
public class TeacherConfig {
@Bean
public Teacher getTeacher(){
return new Teacher();
}
}
//@Component:当前类被Spring接管了,注册到了容器中
@Component
public class Teacher {
private String name;
@Override
public String toString() {
return "Teacher{" +
"name='" + name + '\'' +
'}';
}
public String getName() {
return name;
}
@Value("王倩")
public void setName(String name) {
this.name = name;
}
}
@Test
public void test4(){
ApplicationContext context = new AnnotationConfigApplicationContext(TeacherConfig.class);
Teacher teacher = context.getBean("getTeacher", Teacher.class);
System.out.println(teacher.toString());
}
控制台输出结果:Teacher{name='王倩'}
这种纯Java的配置方式,在SpringBoot中随处可见
参考秦疆老师的笔记