spring中如何实现参数隐式传递_使用Spring的隐式注解和装配以及使用SpringTest框架...

SpringTestConfiguration

1.加入jar 包spring-test-4.3.9.RELEASE.jar

2.写基本的Component

注意级联状态下  需要给需要调用的属性加入getter方法

1 packagecom.myth.spring.annotion.component;2

3 importorg.springframework.stereotype.Component;4

5 @Component6 public classPerson {7 private String name = "Sally";8 private int age = 26;9 privateCar car ;10

11 public voidtravel(Car car) {12 System.out.println(name + " go to travel by "+car.getCarName() + " when at "+age );13 }14 }

View Code

1 packagecom.myth.spring.annotion.component;2

3 importorg.springframework.beans.factory.annotation.Autowired;4 importorg.springframework.stereotype.Component;5

6 @Component7 public classCar {8 private String carName = "Q5";9

10 private String carBrand = "Audi";11

12 private int carPrice = 1000000;13

14 public voidrun() {15 System.out.println("The car :"+carName+"'s brand is "+carBrand+" and the price is "+carPrice);16 }17

18 //若级联的类需要调用类的方法时 需要加入get 方法

19 @Autowired20 publicString getCarName() {21 returncarName;22 }23 }

View Code

3.加入 ComponentScan的配置 basePackages 可以扫描多个包

1 packagecom.myth.spring.annotion.configuration;2

3 importorg.springframework.context.annotation.ComponentScan;4 importorg.springframework.context.annotation.Configuration;5 //加入Configuration

6 @Configuration

//加入ComponentScan并配置basepackage7 @ComponentScan(basePackages="com.myth.spring.annotion")8 public classTravelConfiguration {9 }

并且可以使用excludeFilters 来排除不需要的组件

4.加入SpringTest的框架

1) 写入@RunWith(SpringJUnit4ClassRunner.class) 由SpringJunit4ClassRunner 来替我们创建容器

首先Junit  会根据我们的SpringJUnit4ClassRunner.class 找到  TestContext   然后创建 TestContextManager  然后将TestExecutionListenner 加入到  容器中

而下面有个AbstractTestExecutionListener 可以创建我们所需要的Listenner 可以在下面的代码中看到创建Listenner

TestContext:它封装了运行测试用例的上下文;

TestContextManager:它是进入 Spring TestContext 框架的程序主入口,它管理着一个 TestContext 实例,并在适合的执行点上向所有注册在 TestContextManager 中的 TestExecutionListener 监听器发布事件:比如测试用例实例的准备,测试方法执行前后方法的调用等。

TestExecutionListener:该接口负责响应 TestContextManager 发布的事件。

protected voiddirtyContext(TestContext testContext, HierarchyMode hierarchyMode) {

testContext.markApplicationContextDirty(hierarchyMode);

testContext.setAttribute(DependencyInjectionTestExecutionListener.REINJECT_DEPENDENCIES_ATTRIBUTE, Boolean.TRUE);

}

View Code

2) 写入@ContextConfiguration(classes=TravelConfiguration.class) 来识别配置的类

3) 用autowired 来表示自动装箱机制。

TestTravel

1 packagecom.myth.spring.annotion.test;2

3 import staticorg.junit.Assert.assertNotNull;4

5 importorg.junit.Test;6 importorg.junit.runner.RunWith;7 importorg.springframework.beans.factory.annotation.Autowired;8 importorg.springframework.test.context.ContextConfiguration;9 importorg.springframework.test.context.junit4.SpringJUnit4ClassRunner;10

11 importcom.myth.spring.annotion.component.Car;12 importcom.myth.spring.annotion.component.Person;13 importcom.myth.spring.annotion.configuration.TravelConfiguration;14 @RunWith(SpringJUnit4ClassRunner.class)15 @ContextConfiguration(classes=TravelConfiguration.class)16 public classTestTravel {17 @Autowired18 privatePerson person;19 @Autowired20 privateCar car;21

22

23 @Test24 public voidtest() {25 person.travel(car);26 }27

28 }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值