spring12:注解的方式实现di(依赖注入)
生活随笔
收集整理的這篇文章主要介紹了
spring12:注解的方式实现di(依赖注入)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
package com.atChina.Test;import org.springframework.stereotype.Component;/** @Component: 創(chuàng)建對象,默認(rèn)創(chuàng)建的是單例對象* 屬性: value,表示對象的id* 位置: 在類的上面,表示創(chuàng)建該類的對象* @Component(value="myStudent")等同于<bean id="myStudent" class="com.atChina.Test.Student" />* 和@Component功能相同的其他注解:* 1.@Repository:放在dao層實現(xiàn)類的上面,創(chuàng)建dao層* 2.@Service:放在service層的實現(xiàn)類上面,創(chuàng)建service對象3.@Controller:放在處理器類的上面,創(chuàng)建控制器對象 */// 方式一
//@Component(value="student")// 方式二: value可以省略
//@Component("student") // 方式三: 不指定對象名稱,由框架生成默認(rèn)的名稱:類名的首字母小寫
@Component
public class Student {private String name;private int age;public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}@Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + "]";}
}
@Testpublic void test1(){String configLocation = "com/atChina/Test/applicationContext.xml"; // 類路徑的根目錄ApplicationContext ctx = new ClassPathXmlApplicationContext(configLocation);Student ss = (Student)ctx.getBean("student");System.out.println("stduent:"+ss);}
?
<?xml version="1.0" encoding="UTF-8"?> <!-- 引用Spring的多個Schema空間的格式定義文件 --> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd "><!-- 聲明組件掃描器,指定組件所在的包名component-scan標(biāo)簽:組件掃描器base-package:指定注解所在的包名,框架會掃描這個包和子包中類的注解--><context:component-scan base-package="com.atChina.Test" /><!-- 指定多個包中的注解 --><!-- 第一種方式:多次使用 component-scan --><context:component-scan base-package="com.atChina.Test1" /><context:component-scan base-package="com.atChina.Test2" /><!-- 第二種方式:使用分隔符(;或,),指定多個包 --><context:component-scan base-package="com.atChina.Test1;com.atChina.Test2" /><!-- 第三種方式:指定父包 --><context:component-scan base-package="com.atChina" /></beans>?
總結(jié)
以上是生活随笔為你收集整理的spring12:注解的方式实现di(依赖注入)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: spring11:为应用指定多个spri
- 下一篇: spring:注解@Resource,实