헤르메스 LIFE

[JUnit] @DirtiesContext 사용의 주의점 본문

Spring Framework

[JUnit] @DirtiesContext 사용의 주의점

헤르메스의날개 2012. 4. 6. 10:57
728x90

@DirtiesContext는 applicationContext 상의 통제를 무시하고 직접소스에서 통제하겠다는 얘기.
해당 클래스 혹은 메서드 호출시만 applicationContext 가 매번 생성

applicationContext 를 매번 생성하니 자원적으로도 느리다.
차라리 applicationContext를 하나 더 만들어 쓰는 것이 좋다.

728x90