Spring2.5注解详解与应用
5星 · 超过95%的资源 需积分: 9 66 浏览量
更新于2024-09-19
收藏 27KB DOCX 举报
"本文主要介绍了Spring 2.5版本中的注解使用,这些注解同样适用于Spring 3.0版本。文章重点讲述了如何启用注解处理以及Spring支持的注解类型和过滤规则。"
在Spring框架中,注解是简化配置、实现依赖注入和组件扫描的关键元素。Spring 2.5引入了一系列注解,使得开发人员能够更方便地管理 beans 和应用上下文。在Spring 3.0中,这些注解得到了进一步的增强和扩展,但基本概念和用法保持不变。
1. 注册注解处理器
- 方式一:bean
使用`<bean>`标签创建`AutowiredAnnotationBeanPostProcessor` bean,以启用自动装配注解的处理。例如:
```xml
<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
```
- 方式二:命名空间 `<context:annotation-config/>`
在配置文件中添加`<context:annotation-config/>`,它会自动注册包括`AutowiredAnnotationBeanPostProcessor`在内的多个注解处理器。
- 方式三:命名空间 `<context:component-scan>`
使用`<context:component-scan>`可以同时进行组件扫描和注解处理器注册。通过设置`base-package`属性,指定需要扫描的包及其子包。
2. 组件扫描与过滤规则
- `base-package`属性
`base-package`属性用于定义需要扫描的类包。所有在指定包及子包下的类都会被处理,如:
```xml
<context:component-scan base-package="com.casheen.spring.annotation"/>
```
- 过滤规则
- 注解过滤:使用`<context:include-filter>`或`<context:exclude-filter>`指定特定注解,例如:
```xml
<context:component-scan base-package="com.casheen.spring.annotation">
<context:include-filter type="annotation" expression="org.example.SomeAnnotation"/>
</context:component-scan>
```
- 类名过滤:根据完全限定类名进行过滤:
```xml
<context:component-scan base-package="com.casheen.spring.annotation">
<context:exclude-filter type="assignable" expression="org.example.SomeClass"/>
</context:component-scan>
```
- 正则表达式过滤:使用正则表达式匹配类名:
```xml
<context:component-scan base-package="com.casheen.spring.annotation">
<context:exclude-filter type="regex" expression="com.casheen.spring.annotation.web..*"/>
</context:component-scan>
```
- AspectJ表达式过滤:使用AspectJ表达式来过滤类:
```xml
<context:component-scan base-package="com.casheen.spring.annotation">
<context:exclude-filter type="aspectj" expression="org.example..*Service+"/>
</context:component-scan>
```
3. Spring支持的注解
- `@Autowired`:自动装配依赖,可以根据类型或名称进行匹配。
- `@Qualifier`:配合`@Autowired`使用,指定要装配的具体bean。
- `@Component`:标记一个类为Spring Bean,是所有其他Spring注解(如`@Service`, `@Repository`, `@Controller`)的基础。
- `@Service`、`@Repository`、`@Controller`:分别用于业务层、数据访问层和表现层的bean。
- `@Inject`:与`@Autowired`类似,提供JSR 330标准的依赖注入。
- `@PostConstruct` 和 `@PreDestroy`:分别标识初始化和销毁方法。
- `@Value`:注入值,可以从属性文件或其他源获取。
- `@Resource`:JSR 250规范中的注解,可以基于名称或类型注入依赖。
通过上述注解,开发者可以极大地减少XML配置,提高代码的可读性和可维护性。在Spring 2.5及更高版本中,注解已经成为主流配置方式,使得Spring应用程序更加简洁和灵活。
104 浏览量
131 浏览量
点击了解资源详情
点击了解资源详情
2011-11-23 上传
2012-12-14 上传
133 浏览量
184 浏览量
136 浏览量
仗剑量天涯
- 粉丝: 21
- 资源: 43
最新资源
- C#完全手册 PDF
- C++ 编程思想,翻译的不错
- c++思想1中文版,翻译的不错
- 注册电气工程师(供配电)考试大纲---详尽版
- A Role-Based Approach To Business Process Management
- Office+SharePoint+Server+2007+部署图示指南(官方文件)
- 深入浅出struts2 pdf中文版
- C嵌入式系统编程.pdf
- NetBox使用教程
- 浅谈ASP.net安全编程
- UNIX系统常用命令
- 高等代数线性代数内容详细讲解
- 赵丽《大学英语词汇课堂》文本教材完整版本
- 操作系统操作精髓与设计原理习题解答
- blue ocean strategy
- spring开发指南.pdf