Spring注解使用和与配置文件的关系spring
Spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service 和 @Controller。在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,可是从注解类的命名上,很容易看出这 3 个注解分别与持久层、业务层和控制层(Web 层)相对应。虽然目前这 3 个注释和 @Component 相比没有什么新意,但 Spring 将在之后的版本中为它们添加特殊的功能。因此,若是 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用 @Repository、@Service 和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释。性能
在一个稍大的项目中,一般会有上百个组件,若是这些组件采用xml的bean定义来配置,显然会增长配置文件的体积,查找以及维护起来也不太方便。 Spring2.5为咱们引入了组件自动扫描机制,他能够在类路径底下寻找标注了 @Component,@Service,@Controller,@Repository注解的类,并把这些类归入进spring容器中管理。它的做用和在xml文件中使用bean节点配置组件时同样的。要使用自动扫描机制,咱们须要打开如下配置信息:spa
<?xml version="1.0" encoding="UTF-8" ?>prototype
<beans xmlns="http://www.springframework.org/schema/beans"component
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xml
xmlns:context="http://www.springframework.org/schema/context"接口
xsi:schemaLocation="http://www.springframework.org/schema/beans 字符串
http://www.springframework.org/schema/beans/spring-beans-2.5.xsdget
http://www.springframework.org/schema/contextit
http://www.springframework.org/schema/context/spring-context-2.5.xsd" >
<context:component-scan base-package=”com.eric.spring”>
</beans>
其中base-package为须要扫描的包(含全部子包)
在 spring的配置文件里面只须要加上<context:annotation-config/> 和<context:component-scan base-package="须要实现注入的类所在包"/>,固然也可使用base-package="*"表示所有的类,但通常状况下不这样使用,影响系统性能,一般以下使用:
<context:component-scan base-package=”com.eric.spring”>
其中base-package为须要扫描的包(含全部子包)
把DAO实现类注入到service实现类中,把service的接口(注意不要是service的实现类)注入到action中,注入时不要new 这个注入的类,由于spring会自动注入,若是手动再new的话会出现错误,而后属性加上@Autowired后不须要getter()和setter()方法,Spring也会自动注入。至于更具体的内容,等对注入的方式更加熟练后会作个完整的例子上来。
类注解就是在类定义上标注的注解,不是在类定义的里面加标注,是在类的前面标注。主要是4个注解:
@Service用于标注业务层组件,表示定义一个bean,自动根据bean的类名实例化一个首写字母为小写的bean,例如Chinese实例化为chinese,若是须要本身更名字则:@Service("你本身改的bean名")。
@Controller用于标注控制层组件(如struts中的action)
@Repository用于标注数据访问的持久层组件,即DAO组件
@Component泛指组件,当组件很差归类的时候,咱们可使用这个注解进行标注。
例如:
@Service
public class VentorServiceImpl implements iVentorService {
……
}
@Repository
public class VentorDaoImpl implements iVentorDao {
……
}
getBean的默认名称是类名(头字母小写),若是想自定义,能够@Service(“aaaaa”)这样来指定,这种bean默认是单例的,若是想改变,可使用@Service(“beanName”) @Scope(“prototype”)来改变。
可使用如下方式指定初始化方法和销毁方法(方法名任意):
@PostConstruct
public void init() {
……
}
@PreDestroy
public void destory() {
……
}
在接口前面标上@Autowired和@Qualifier注解使得接口能够被容器注入,当接口存在两个实现类的时候必须指定其中一个来注入,使用实现类首字母小写的字符串来注入,如:
@Autowired
@Qualifier("chinese")
private Man man;
不然能够省略,只写@Autowired 。