이것도 팁이 될까요 ???, 아시는 분들은 PASS !
보통 spring project 에서 application-context.xml 에 bean설정을 넣어두는데, juni에서 테스트 클래스를 만들고 spring bean 설정들을 로딩하는 아주 간단한 방법은 아래와 같습니다...
import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @ContextConfiguration @RunWith(SpringJUnit4ClassRunner.class) public class ExampleConfigurationTests { @Autowired private Service service;