标签:scope org main 注解 并且 pac ssr 容器 code
<!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.1.9.RELEASE</version>
<scope>test</scope>
</dependency>
使用 Junit 提供的一个注解把原来的 main 方法替换了,替换成 spring 提供的
这里面要求的是一个字节码,必须是继承 Runner 这个类
告知 spring 的运行期,spring 和 ioc 创建是基于 xml 还是注解的,并且说明位置
package com.test;
import com.config.JdbcConfig;
import com.config.SpringConfiguration;
import com.domain.Account;
import com.service.IAccountService;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import java.util.List;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = SpringConfiguration.class)
public class AccountServiceTest {
@Autowired
IAccountService as=null;
@Test
public void testFindAllAccount(){
//3.执行方法
List<Account> accounts = as.findAllAccount();
for (Account account:accounts){
System.out.println(account);
}
}
}
标签:scope org main 注解 并且 pac ssr 容器 code
原文地址:https://www.cnblogs.com/zuiren/p/11437518.html