程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 基於注解的bean配置,注解bean配置

基於注解的bean配置,注解bean配置

編輯:JAVA綜合教程

基於注解的bean配置,注解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

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved