1:和junit一起使用的时候因为没有读取配置文件,所以老是报创建Bean失败,上网查了查,原来是先要读取spring的核心配置文件,这样机也能够启动IOC容器了,
可以先创建一个父类,在父类里面读取配置文件创建IOC容器,然后让子类继承他就可以了
BaseTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.carry.ssm.test; import javax.annotation.Resource; import javax.security.auth.PrivateCredentialPermission; import org.junit.Test; import org.junit.runner.RunWith; import com.carry.ssm.Services.TestServer; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** * 配置spring和junit整合,junit启动时加载springIOC容器 */ @RunWith (SpringJUnit4ClassRunner. class ) //告诉junit spring配置文件 @ContextConfiguration ( "classpath:applictionContext.xml" ) //我是放在classpath下的,可以根据自己的路径改 public class baseTest { } |
2:写测试类
TestUnit.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package com.carry.ssm.test; import javax.annotation.Resource; import org.junit.Test; import com.carry.ssm.Model.User; import com.carry.ssm.Services.TestServer; import com.carry.ssm.Services.UserService; public class TestUnit extends baseTest{ @Resource private TestServer bean; @Resource private UserService userService; //注意,这里要用接口,因为用到了spring的AOP /*@Test*/ /* public void inteceptorTest(){ bean.ttst(); } */ @Test public void getUser(){ User user= new User(); user.setUSER_NAME( "carry" ); userService.login(user); } } |
打印如下
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/CarryBest/article/details/71123493