02-使用注解配置spring

1 准备工作

1.导包 4+2+spring-aop【新版本需要导入 spring-aop 包】

2.为主配置文件引入新的命名空间(约束) 【context】

3.开启使用注解代理配置文件

02-使用注解配置spring

4.在类中使用注解完成配置

2 将对象注册到容器

02-使用注解配置spring

3 修改对象的作用范围

02-使用注解配置spring

4 值类型注入

02-使用注解配置spring

02-使用注解配置spring

02-使用注解配置spring

5 引用类型注入

02-使用注解配置spring

6 初始化|销毁方法

02-使用注解配置spring

7 spring 整合 junit 测试

02-使用注解配置spring

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);
}
}
上一篇:git bash出现 Failed to connect to github.com port 443 after 21074 ms: Timed out


下一篇:FPGA验证之SystemVerilog+UVM