반응형
오류
java.lang.IllegalArgumentException: WebApplicationContext is required
해결
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations=WebConfig.class)//You can use your xml too
public class Test{
..
@Test
public void dataTest(){
}
}
어노테이션 누락.. 위 3개 어노테이션이 존재해야 한다.
@RunWith 어노테이션 대신 아래와 같은 클래스 확장도 가능
@WebAppConfiguration
@ContextConfiguration(locations=WebConfig.class)//You can use your xml too
public class Test extends AbstractJUnit4SpringContextTests{
..
@Test
public void dataTest(){
}
}
반응형
'개발 환경 및 오류' 카테고리의 다른 글
[MSSQL] CONVERT(DATETIME, )시 오류 (0) | 2023.06.22 |
---|---|
nested exception is java.lang.NoClassDefFoundError (0) | 2023.05.30 |
[SQL Server] sp_dboption을(를) 찾을 수 없습니다. (0) | 2023.04.06 |
[Tomcat] GET 방식 특수문자 파라미터 처리하기 (0) | 2023.03.16 |
[Chrome] 크롬 http -> https 강제 리다이렉트 해제하기 (3) | 2023.03.14 |