Spring系列文章
Spring框架-1(基礎(chǔ))
Spring框架-2(IOC上)
Spring框架-3(IOC下)
Spring框架-4(AOP)
Spring框架-5(JDBC模板&Spring事務(wù)管理)
Spring框架-6(SpringMvc)
Spring框架-7(搭建SSM)
Spring框架-8(SpringMVC2)
上一篇文章使用的XML配置的方法使用Spring的IOC功能。如果Spring每一個(gè)類(lèi)都需要這么麻煩的配置,做起項(xiàng)目來(lái)那不累死頭牛呀闻?所以我們分析一下使用注解的方式來(lái)實(shí)現(xiàn)。
首先先看下我們需要分析一些什么東西周偎,如下圖:
注解方式的實(shí)現(xiàn)
1.在applicationContext.xml配置文件中開(kāi)啟組件掃描
- Spring的注解開(kāi)發(fā):組件掃描
<context:component-scan base-package="com.zhong.springdemo"/>
- 注意:可以采用如下配置,這樣是掃描com.itheima包下所有的內(nèi)容
<context:component-scan base-package="com.zhong"/>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:contex="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">
<contex:component-scan base-package="com.zhong.springdemo"/>
</beans>
在使用對(duì)象中加上注解
@Component(value="userController") -- 相當(dāng)于在XML的配置方式中 <bean id="userService" class="...">
//將這個(gè)類(lèi)交個(gè)spring管理
@Component("userController")
public class MyController {
//通過(guò)spring把myService注入到這個(gè)資源內(nèi)
@Autowired
private MyService myService;
//測(cè)試
public void test() {
myService.showTest();
}
}
//將這個(gè)類(lèi)交個(gè)spring管理
@Component("userService")
public class MyService {
//注入一個(gè)屬性
@Value("這是一個(gè)測(cè)試語(yǔ)句")
private String textStr;
//打印注入的屬性值
public void showTest() {
System.out.println(textStr);
}
}
編寫(xiě)測(cè)試代碼
public static void main(String[] args) {
// 使用Spring的工廠
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
// 通過(guò)工廠獲得類(lèi):
MyController myController = (MyController) applicationContext.getBean("userController");
myController.test();
}
- 運(yùn)行結(jié)果:
這是一個(gè)測(cè)試語(yǔ)句
到這就說(shuō)明我們的注解方式使用成功了撑帖。
總結(jié)
Bean管理的常用注解
@Component:組件.(作用在類(lèi)上)
Spring中提供@Component的三個(gè)衍生注解:(功能目前來(lái)講是一致的)
@Controller -- 作用在WEB層
@Service -- 作用在業(yè)務(wù)層
@Repository -- 作用在持久層
說(shuō)明:這三個(gè)注解是為了讓標(biāo)注類(lèi)本身的用途清晰栏饮,Spring在后續(xù)版本會(huì)對(duì)其增強(qiáng)
- 屬性注入的注解(說(shuō)明:使用注解注入的方式,可以不用提供set方法)
-
如果是注入的普通類(lèi)型,可以使用value注解
@Value -- 用于注入普通類(lèi)型
-
如果注入的是對(duì)象類(lèi)型磷仰,使用如下注解
@Autowired -- 默認(rèn)按類(lèi)型進(jìn)行自動(dòng)裝配
-
如果想按名稱(chēng)注入
@Qualifier -- 強(qiáng)制使用名稱(chēng)注入
@Resource -- 相當(dāng)于@Autowired和@Qualifier一起使用
強(qiáng)調(diào):Java提供的注解 屬性使用name屬性
Bean的作用范圍和生命周期的注解
- Bean的作用范圍注解
注解為@Scope(value="prototype")袍嬉,作用在類(lèi)上。值如下:
singleton -- 單例,默認(rèn)值
prototype -- 多例
- Bean的生命周期的配置(了解)
注解如下:
@PostConstruct -- 相當(dāng)于init-method
@PreDestroy -- 相當(dāng)于destroy-method
好了看到這伺通,我們的IOC暫時(shí)基礎(chǔ)學(xué)完了箍土,下一篇文章我們來(lái)分析AOP吧!