02-使用注解配置spring
Posted jepson6669
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了02-使用注解配置spring相关的知识,希望对你有一定的参考价值。
1 准备工作
1.导包 4+2+spring-aop【新版本需要导入 spring-aop 包】
2.为主配置文件引入新的命名空间(约束) 【context】
3.开启使用注解代理配置文件
4.在类中使用注解完成配置
2 将对象注册到容器
3 修改对象的作用范围
4 值类型注入
5 引用类型注入
6 初始化|销毁方法
7 spring 整合 junit 测试
package www.test.b_junit; import javax.annotation.Resource; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import www.test.bean.User; //帮我们创建容器 @RunWith(SpringJUnit4ClassRunner.class) //指定创建容器的时候使用哪个配置文件 @ContextConfiguration("classpath:applicationContext.xml") public class Demo { //将名为user的对象注入到u变量中 @Resource(name="user") private User u; @Test public void fun1(){ System.out.println(u); } }
以上是关于02-使用注解配置spring的主要内容,如果未能解决你的问题,请参考以下文章
JAVAEE——spring02:使用注解配置springsts插件junit整合测试和aop演示
JAVAEE框架整合技术之Spring02-AOP面向切面编程技术