검색결과 리스트
분류 전체보기에 해당되는 글 115건
- 2009.06.10 Velocity에서 Exception stack 확인 방법
글
Velocity에서 Exception stack 확인 방법
Jakarta
2009. 6. 10. 16:49
#if($exception.Cause)
#set($exception = $exception.Cause)
#foreach($stack in $exception.getStackTrace())
$stack.toString()
#end
#end
이렇게 하면 된다.!