[轉]使用@Test 也可以從spring容器中獲取依賴註入
阿新 • • 發佈:2017-10-12
oca fig article ring1 detail ice 如果 text resource
轉自:http://blog.csdn.net/u010987379/article/details/52091790
- @RunWith(SpringJUnit4ClassRunner.class)
- @ContextConfiguration(locations = { "classpath*:/spring1.xml", "classpath*:/spring2.xml" })
- @TestExecutionListeners( { DependencyInjectionTestExecutionListener.class, TransactionalTestExecutionListener.class })
- @Transactional
- public class TestClass {
-
@Resource
private ServiceOne serviceOne; - //這個類會在執行時被註入,這裏是按類型註入,如果想按名稱註入,需要加上@Named註解,如@Named("class1")
- //實現類可以加上@Named("class1")註解,也可以是配置在配置文件中的
- @Test
- public void t1(){
- }
- }
[轉]使用@Test 也可以從spring容器中獲取依賴註入