码迷,mamicode.com
首页 > 其他好文 > 详细

基于注解的bean配置

时间:2017-01-07 20:55:09      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:tor   png   xml配置   class   基于   ges   org   src   分享   

基于注解的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配置

标签:tor   png   xml配置   class   基于   ges   org   src   分享   

原文地址:http://www.cnblogs.com/mainstudio/p/6260138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!