티스토리 뷰

Dev/Spring

Spring MVC Test

마이스토리 2016. 5. 10. 10:15

참고

http://blog.woniper.net/272

http://www.slideshare.net/sbcoba/spring-test-mvc



>> pom.xml 설정

<dependency>

<groupId>junit</groupId>

<artifactId>junit</artifactId>

<version>4.12</version>

</dependency>

                <dependency>

<groupId>org.springframework</groupId>

<artifactId>spring-test</artifactId>

<version>${spring.maven.artifact.version}</version>

</dependency>


>> 공통 test context 설정 클래스 활용

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations={

"file:src/main/webapp/WEB-INF/config/egovframework/springmvc/egov-com-servlet.xml",

"classpath:egovframework/spring/com/*.xml"

})

@WebAppConfiguration

public class AbstractApplicationContextTest {


}

* 이후 생성되는 JUnit 테스트 클래스들이 위 클래스를 상속받으면 반복되는 context설정들을 줄일 수 있다.



댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31