常用注解:
1.@Controller 控制器
用于標注控制層覆醇,相當于struts中的action層
2.@Service 服務
用于標注服務層,主要用來進行業(yè)務的邏輯處理
3.@Repository
用于標注數(shù)據(jù)訪問層袍辞,也可以說用于標注數(shù)據(jù)訪問組件,即DAO組件
4.@Component (把普通pojo實例化到spring容器中凿试,相當于配置文件中的<bean id="" class=""/>)
泛指各種組件那婉,就是說當我們的類不屬于各種歸類的時候(不屬于@Controller详炬、@Services等的時候)呛谜,我們就可以使用@Component來標注這個類隐岛。
用法:都是標注在類名上聚凹,用于注冊一個bean到Spring上下文中妒牙。
區(qū)別:@Service 用于服務層湘今;@Controller用于控制層摩瞎;@Repository用于DAO層愉豺;不確定的用@Component
@Autowire和@Resource都是Spring支持的注解方式動態(tài)裝配bean。
5.@Autowire默認按照類型(by-type)裝配冻押,默認情況下要求依賴對象必須存在洛巢。
-如果允許依賴對象為null稿茉,需設置required屬性為false漓库,即
@Autowire(required=false)
private InjectionBean beanName;
-如果使用按照名稱(by-name)裝配渺蒿,需結(jié)合@Qualifier注解使用怠蹂,即
@Autowire
@Qualifier("beanName")
private InjectionBean beanName;
6.@Resource默認按照名稱(by-name)裝配少态,名稱可以通過name屬性指定彼妻。
-如果沒有指定name
1.當注解在字段上時,默認取name=字段名稱裝配澳骤。
2.當注解在setter方法上時歧强,默認取name=屬性名稱裝配。
-當按照名稱(by-name)裝配未匹配時为肮,按照類型(by-type)裝配摊册。
1.當顯示指定name屬性后,只能按照名稱(by-name)裝配颊艳。
-@Resoure裝配順序
如果同時指定name和type屬性茅特,則找到唯一匹配的bean裝配,未找到則拋異常棋枕;
如果指定name屬性白修,則按照名稱(by-name)裝配,未找到則拋異常重斑;
如果指定type屬性兵睛,則按照類型(by-type)裝配笛丙,未找到或者找到多個則拋異常;
既未指定name屬性,又未指定type屬性哥桥,則按照名稱(by-name)裝配已卸;如果未找到,則按照類型(by-type)裝配。
下面通過一個實例講解如何使用這些注解
目錄結(jié)構
1.創(chuàng)建Dao層
在ch3應用的src中腮介,創(chuàng)建annotation.Dao包,該包下創(chuàng)建TestDao接口和TestDaoImpl實現(xiàn)類,并將實現(xiàn)類TestDaoImpl使用@Repository注解標注為數(shù)據(jù)訪問層荤牍。
TestDao.java
package annotation.dao;
public interface TestDao {
public void save();
}
TestDaoImpl.java
package annotation.dao;
import org.springframework.stereotype.Repository;
@Repository("testDao")
public class TestDaoImpl implements TestDao {
public void save() {
System.out.println("testDao save");
}
}
2.創(chuàng)建Service層
在ch3應用的src中,創(chuàng)建annotation.service包,該包下創(chuàng)建TestService接口和TestServiceImpl實現(xiàn)類跌前,并將實現(xiàn)類TestServiceImpl使用@Service注解表注為業(yè)務邏輯層灾炭。
TestService.java
package annotation.service;
public interface TestService {
public void save();
}
TestServiceImpl
package annotation.service;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import annotation.dao.TestDao;
@Service("testService")
public class TestServiceImpl implements TestService{
@Resource(name="testDao")
private TestDao testDao;
public void save() {
testDao.save();
System.out.println("testService save");
}
}
3.創(chuàng)建Controller層
在ch3應用的src中涛酗,創(chuàng)建annotation.controller包,該包下創(chuàng)建TestController類使用@Controller注解標注為控制器層枯途。
TestController.java
package annotation.service;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import annotation.dao.TestDao;
@Service("testService")
public class TestServiceImpl implements TestService{
@Resource(name="testDao")
private TestDao testDao;
public void save() {
testDao.save();
System.out.println("testService save");
}
}
4.配置注解
由于annotation.dao鸥印、annotation.service和annotation.controller包都屬于annotation包的子包,因此,不需要在配置annotationContext.xml中配置注解
annotationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 使用context命名空間抽活,通過Spring掃描指定包下所有的Bean實現(xiàn)類汁胆,通過注釋解析 -->
<context:component-scan base-package="annotation"/>
</beans>
5.創(chuàng)建測試類
在ch3應用的test包中谢谦,創(chuàng)建測試類
TestMoreAnnotation.java
package test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import annotation.AnnotationUser;
import annotation.controller.TestController;
public class TestMoreAnnotation {
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext appCon = new ClassPathXmlApplicationContext("annotationContext.xml");
TestController testcon = (TestController)appCon.getBean("testController");
testcon.save();
}
}
運行結(jié)果