基于注解的bean配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于注解的bean配置相关的知识,希望对你有一定的参考价值。

基于注解的bean配置,主要是进行applicationContext.xml配置、DAO层类注解、Service层类注解。

1、在applicationContext.xml文件中配置信息如下

 <!--定义服务层代码存放的包扫描路径-->
 <context:component-scan base-package="org.mainstudio.com.service,org.mainstudio.com.dao" />

其中base-package包括了要进行注解类所在的包,多个用“,”隔开。

技术分享


2、DAO层类注解

@Repository("commodityDao")
public class CommodityDaoImpl implements CommodityDao

技术分享


3、Service层类注解

@Service("commodityService")
public class CommodityServiceImpl implements CommodityService

技术分享

 




以上是关于基于注解的bean配置的主要内容,如果未能解决你的问题,请参考以下文章

Spring--通过注解来配置bean

Spring之基于注解配置

什么是基于注解的容器配置?

什么是基于注解的容器配置 ?

Spring4.0学习笔记006——Bean的配置(基于注解)

Spring4.0学习笔记006——Bean的配置(基于注解)