spring学习笔记4-Spring基于注解的配置(1)

Spring基于注解的配置(1)

基于注解的配置

从 Spring 2.5 开始就可以使用注解来配置依赖注入。而不是采用 XML 来描述一个 bean 连线,你可以使用相关类,方法或字段声明的注解,将 bean 配置移动到组件类本身。
注解连线在默认情况下在 Spring 容器中不打开。因此,在可以使用基于注解的连线之前,我们将需要在我们的 Spring 配置文件中启用它。即在xml文件中加入context:annotation-config/即可。
一旦 被配置后,你就可以开始注解你的代码,表明 Spring 应该自动连接值到属性,方法和构造函数。常见的几个重要注解有四种。

Spring @Required 注释

@Required 注释应用于 bean 属性的 setter 方法,它表明受影响的 bean 属性在配置时必须放在 XML 配置文件中,否则容器就会抛出一个 BeanInitializationException 异常。

实例:

  1. 在eclipse中新建一个名为autowire的Java工程
  2. 带入spring所需要的包
  3. 在src下新建一个名为autoTest03的包,在包下新建MainTest.java,Tstudent03.java,和Tteacher03.java三个class文件
  4. 在src下创建Beans.xml文件

MainTest03.java的内容:

package autowireTest03;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainTest {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
		Tstudent03 student = (Tstudent03)context.getBean("Tstudent03");
		System.out.println(student);
	}
}

Tstudent.java03的内容:

package autowireTest03;
public class Tstudent03 {
	private String name;
	private Tteacher03 teacher;
	public void setName(String name) {
		this.name = name;
	}
	public void setTeacher(Tteacher03 teacher) {
		this.teacher = teacher;
	}
	public String toString() {
		return "my name is "+name;
	}
}

Tteacher03.java的内容:

package autowireTest03;

import org.springframework.beans.factory.annotation.Required;

public class Tteacher03 {
	private String name;
	//@Required
	public void setName(String name) {
		this.name = name;
	}
	public String getName() {
		return name;
	}
}

Beans.xml的内容:

<?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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
	
	<context:annotation-config/>
	
	<bean id="Tstudent01" class="autowireTest01.Tstudent" autowire="byName">
		<property name="name" value="zs"></property>
	</bean>

	<bean id="teacher" class="autowireTest01.Tteacher">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tstudent02" class="autowireTest02.Tstudent02" autowire="constructor">
		<constructor-arg value="zs"></constructor-arg>
	</bean>
	
	<bean id="teacher02" class="autowireTest02.Tteacher02">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tteacher03" class="autowireTest03.Tteacher03"></bean>
	
	<bean id="Tstudent03" class="autowireTest03.Tstudent03">
		<property name="name" value="zs"></property>
		<property name="teacher" ref="Tteacher03"></property>
	</bean>
	
</beans>

当把@Require加上时,输出结果为:
报错信息

当把@Require注释掉时,输出结果为:
在这里插入图片描述
结果没有报错!

Spring @Autowired 注释

@Autowired 注释对在哪里和如何完成自动连接提供了更多的细微的控制。

1.Setter 方法中的 @Autowired
可以在 XML 文件中的 setter 方法中使用 @Autowired 注释来除去 元素。当 Spring遇到一个在 setter 方法中使用的 @Autowired 注释,它会在方法中视图执行 byType 自动连接。

实例:
就对上文中的autowireTest03这个包中的文件进行测试

Beans.xml文件内容如下:

<?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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
	
	<context:annotation-config/>
	
	<bean id="Tstudent01" class="autowireTest01.Tstudent" autowire="byName">
		<property name="name" value="zs"></property>
	</bean>

	<bean id="teacher" class="autowireTest01.Tteacher">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tstudent02" class="autowireTest02.Tstudent02" autowire="constructor">
		<constructor-arg value="zs"></constructor-arg>
	</bean>
	
	<bean id="teacher02" class="autowireTest02.Tteacher02">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tteacher03" class="autowireTest03.Tteacher03">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tstudent03" class="autowireTest03.Tstudent03">
		<property name="name" value="zs"></property>
	</bean>
	
</beans>

Tstudent.java文件的内容如下:

package autowireTest03;

import org.springframework.beans.factory.annotation.Autowired;

public class Tstudent03 {
	private String name;
	private Tteacher03 teacher;
	public void setName(String name) {
		this.name = name;
	}
	@Autowired
	public void setTeacher(Tteacher03 teacher) {
		this.teacher = teacher;
	}
	public String toString() {
		return "my name is "+name+",and my teacher's name is "+teacher.getName();
	}
}

最后输出结果:
在这里插入图片描述

2.属性中的 @Autowired

可以在属性中使用 @Autowired 注释来除去 setter 方法。当时使用 为自动连接属性传递的时候,Spring 会将这些传递过来的值或者引用自动分配给那些属性。

3.构造函数中的 @Autowired

可以在构造函数中使用 @Autowired。一个构造函数 @Autowired 说明当创建 bean 时,即使在 XML 文件中没有使用 元素配置 bean ,构造函数也会被自动连接。

@Autowired 的(required=false)选项
默认情况下,@Autowired 注释意味着依赖是必须的,它类似于 @Required 注释,然而,可以使用 @Autowired 的 (required=false) 选项关闭默认行为。类似于@Require注释。

Spring @Qualifier 注释
可能会有这样一种情况,当要创建多个具有相同类型的 bean 时,并且想要用一个属性只为它们其中的一个进行装配,在这种情况下,可以使用 @Qualifier 注释和 @Autowired 注释通过指定哪一个真正的 bean 将会被装配来消除混乱。

实例:

  1. 在eclipse中新建一个名为autowire的Java工程
  2. 带入spring所需要的包
  3. 在src下新建一个名为autoTest04的包,在包下新建MainTest.java,Tstudent04.java,和Tteacher04.java三个class文件
  4. 在src下创建Beans.xml文件

MainTest.java文件的内容如下:

package autowireTest04;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;


public class MainTest {

	public static void main(String[] args) {
		ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
		Tstudent04 student = (Tstudent04)context.getBean("Tstudent04");
		System.out.println(student);
	}

}

Tstudent04.java的内容如下:

package autowireTest04;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;

public class Tstudent04 {
	private String name;
	@Autowired
	@Qualifier("Tteacher042")
	private Tteacher04 teacher;
	public void setName(String name) {
		this.name = name;
	}
	 public void setTeacher(Tteacher04 teacher) { 
		 this.teacher =teacher; 
		 }
	 
	public String toString() {
		return "my name is "+name+",and my teacher's name is "+teacher.getName();
	}
}

Tteacher04.java的内容如下:

package autowireTest04;


public class Tteacher04 {
	private String name;
	public void setName(String name) {
		this.name = name;
	}

	public String getName() {
		return name;
	}
}

Beans,xml为的内容如下:

<?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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
	
	<context:annotation-config/>
	
	<bean id="Tstudent01" class="autowireTest01.Tstudent" autowire="byName">
		<property name="name" value="zs"></property>
	</bean>

	<bean id="teacher" class="autowireTest01.Tteacher">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tstudent02" class="autowireTest02.Tstudent02" autowire="constructor">
		<constructor-arg value="zs"></constructor-arg>
	</bean>
	
	<bean id="teacher02" class="autowireTest02.Tteacher02">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tteacher03" class="autowireTest03.Tteacher03">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tstudent03" class="autowireTest03.Tstudent03">
		<property name="name" value="zs"></property>
	</bean>
	
	<bean id="Tstudent04" class="autowireTest04.Tstudent04">
		<property name="name" value="zs"></property>
	</bean>
	
	<bean id="Tteacher041" class="autowireTest04.Tteacher04">
		<property name="name" value="ls"></property>
	</bean>
	
	<bean id="Tteacher042" class="autowireTest04.Tteacher04">
		<property name="name" value="ww"></property>
	</bean>
	
</beans>

输出结果如下:
在这里插入图片描述

Spring JSR-250 注释

Spring还使用基于 JSR-250 注释,它包括 @PostConstruct, @PreDestroy 和 @Resource 注释。因为你已经有了其他的选择,尽管这些注释并不是真正所需要的,但是简单的了解下。

@PostConstruct 和 @PreDestroy 注释:
为了定义一个 bean 的安装和卸载,我们使用 init-method 和/或 destroy-method 参数简单的声明一下 。init-method 属性指定了一个方法,该方法在 bean 的实例化阶段会立即被调用。同样地,destroy-method 指定了一个方法,该方法只在一个 bean 从容器中删除之前被调用。

可以使用 @PostConstruct 注释作为初始化回调函数的一个替代,@PreDestroy 注释作为销毁回调函数的一个替代

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值