`
LiYunpeng
  • 浏览: 952284 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

Spring 圆注释

阅读更多
转自http://blog.sina.com.cn/s/blog_44a059590100q5kp.html

在目前的 Spring 版本中,这 3 个注释和 @Component 是等效的,但是从注释类的命名上,很容易看出这 3 个注释分别和持久层、业务层和控制层(Web 层)相对应。虽然目前这 3 个注释和 @Component 相比没有什么新意,但 Spring 将在以后的版本中为它们添加特殊的功能。所以,如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用 @Repository、@Service 和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释。
在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。 Spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了 @Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件时一样的
applicationContext.xml的配置文件:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
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.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"
default-default-lazy-init="true">
<!-- 使用annotation定义事务-->
<tx:annotation-driventransaction-manager="transactionManager" proxy-target-class="true"/>
<!--使用annotation 自动注册bean,并检查@Required,@Autowired的属性已被注入base-package为需要扫描的包(含所有子包)-->
<context:component-scanbase-package="com" />
</beans>

以上是spring XML最基本的配置
其中default- 这个不要忘了加,在项目中没有加这个的时候,老是报如下错误
Properties 'pageJdbcSupport' and 'sessionFactory' are required for bean 'productsDaoImpl'
这种错误又无法跟踪定位,到是排查了好了一会。
@Autowired
可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。
action控制层

@Controller("proc")
public class ProductsAction {
@Autowired
// @Qualifier("productsService")
private ProductsService productsService;
}
@Controller应用引用的proc就是struts.xml里面定义的namespace
ProductsService该类为业务层接口
业务层
@Service
@Transactional
public class ProductsServiceImpl implements ProductsService {
@Autowired
private ProductsDao productsDao;
……
}
ProductsDao为持久层接口
@Repository
public class ProductsDaoImpl  implementsProductsDao {
……
}
以上就是annotation在实际业务中的应用,再说明一下:
     @Service用于标注业务层组件,
     @Controller用于标注控制层组件(如struts中的action),

     @Repository用于标注数据访问组件,即DAO组件,

     @Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。

     @Transactional声明这个service所有方法需要事务管理


@Resource
@Resource 的作用相当于 @Autowired,只不过
@Autowired 按 byType 自动注入,面 @Resource 默认按 byName
自动注入罢了。@Resource 有两个属性是比较重要的,分别是 name 和 type,Spring 将
@Resource 注释的 name 属性解析为 Bean 的名字,而 type 属性则解析为 Bean 的类型。所以如果使用
name 属性,则使用 byName 的自动注入策略,而使用 type 属性时则使用 byType 自动注入策略。如果既不指定 name 也不指定 type 属性,这时将通过反射机制使用 byName 自动注入策略。
Resource 注释类位于 Spring 发布包的 lib/j2ee/common-annotations.jar 类包中,因此在使用之前必须将其加入到项目的类库中。
@PostConstruct 和@PreDestroy
标注了 @PostConstruct 注释的方法将在类实例化后调用,而标注了 @PreDestroy 的方法将在类销毁之前调用。
@Qualifier
这里说一下@Qualifier("name")这个方法,这里的name为bean类名
@Service
@Transactional
public class ProductsServiceImpl implements ProductsService {
@Autowired
@Qualifier("prodBuliderImpl")
private TreeBuilder<TabProducts> prodBulider;
……
}
TreeBuilder接口
public interface TreeBuilder<T> {
……
}
ProdBuliderImpl 类
@Component
public class ProdBuliderImpl implements TreeBuilder<TabProducts>{
……
}
分享到:
评论

相关推荐

    Spring详细教程资料

    - **圆括号**:确保圆括号的正确使用,特别是在条件语句中。 - **返回值**:确保方法的返回值与其声明的类型一致。 - **条件运算符"?"**:使用条件运算符时,确保其左侧的表达式符合逻辑。 以上就是从给定的文件中...

    源代码统计工具挺好用的 喜欢的朋友们就试试

    标题中的“源代码统计工具挺好用的 喜欢的朋友们就试试”表明这是一个用于统计源代码相关数据的工具,可能包括代码行数、注释行数等。描述进一步揭示了该工具的功能,它能够分析VC(Visual C++)项目,提供关于代码...

    Java语言编码规范

    - **其它惯例**:如圆括号的使用、返回值的检查、条件运算符的使用等,均需遵循统一的规范。 #### 11. 信息输出 适当的日志输出可以帮助定位问题,但过多的日志会降低程序的性能。 #### 12. 代码范例 最后,通过...

    5屏圆角Flash图片滚动展示.zip_Java_

    6. **后台与前端交互**:虽然标签中提及了“Java”,但这里可能指的是后台处理部分,例如使用Java服务器端技术(如Servlet、JSP或Spring MVC)来处理图片的上传、存储和获取,以及与Flash组件的通信。Java可能通过...

    java编码规范

    - **圆括号**:使用圆括号来增强表达式的清晰度。 - **返回值**:方法返回值应当有意义。 - **条件运算符“?”前的表达式**:确保条件运算符前面的表达式具有确定性。 #### 11. 信息输出 合理的日志记录可以帮助...

    MATLAB - 全网最详细网络图(图论图)绘制教程.pdf

    教程还提到了布局的改变,MATLAB提供了多种布局方式,如`plot(G, 'Layout', 'force')`(力导向布局)或`plot(G, 'Layout', 'spring')`(弹簧布局)。布局的选择可以根据图的结构和可视化需求进行调整。 此外,还...

    测试

    单行注释使用`//`,多行注释使用`/* */`,这与CSS中的注释方式相同。 7. **运算符(Operators)**:SCSS支持数学运算,如加减乘除,可以用于计算尺寸、颜色等。例如,`width: 100px + 20px;`。 8. **选择器继承...

    kropka_przecinek

    - **圆括号 ()**:用于函数调用和数学运算的优先级控制。例如,`f(a+b)` 表示先执行括号内的操作,再调用函数 f。 - **方括号 []**:用于访问数组元素,如 `arr[i]` 表示获取数组 arr 的第 i 个元素。 - **大括号...

    JAVA上百实例源码以及开源项目源代码

    Java绘制图片火焰效果 1个目标文件 摘要:Java源码,图形操作,火焰效果 Java绘制图片火焰效果,源代码相关注释:前景和背景Image对象、Applet和绘制火焰的效果的Image对象、Applet和绘制火焰的效果的Graphics对象、...

Global site tag (gtag.js) - Google Analytics