基于注解的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配置的主要内容,如果未能解决你的问题,请参考以下文章