728x90
반응형
Junit 테스트 소스에서 ServletContext를 사용해야 할 경우 MockServletContext를 사용하면 된다.
MockServletContext은 org.springframework.mock.web 패키지에 있고 ServletContext를 구현하고 있다.
public class MockServletContext implements ServletContext {
public MockServletContext() {
this("", (ResourceLoader)null);
}
}
ServletContext sc = new MockServletContext();
728x90
반응형
'개발 > java' 카테고리의 다른 글
[Java] byte 에서 특정자리 bit 추출하는 방법 (0) | 2024.02.02 |
---|---|
Google Bard API 사용 (0) | 2023.12.02 |
org.apache.commons.lang3.ObjectUtils max 함수 (0) | 2023.10.06 |
Retrofit으로 여러개의 API를 하나의 DTO 객체로 처리하는 방법 (0) | 2023.08.13 |
eclipse spotbugs (findbugs) (0) | 2023.04.26 |