출처 : http://yosh.tistory.com/164
소스상에서 아래와 같이 코딩한다.
public class testClass{
public String testMethod(String msg) throws Exception {
... 생략 ...
try {
throw new Exception("Exception 메세지 내용 입력");
} catch(Exception e) {
e.printStackTrace();
}
}
}
public String testMethod(String msg) throws Exception {
... 생략 ...
try {
throw new Exception("Exception 메세지 내용 입력");
} catch(Exception e) {
e.printStackTrace();
}
}
}
이렇게 하고 stdout.log 파일을 열어보면 아래와 같이 나올것이다.
java.lang.Exception: !!!!test!!!!
at com.testClass.execute(VmRequestAction.java:38)
... 생략 ...
2009. 4. 3. 오후 7:24:30 org.apache.catalina.core.StandardContext reload
정보: Reloading this Context has started
2009. 4. 3. 오후 7:24:30 org.apache.catalina.logger.LoggerBase stop
정보: unregistering logger Catalina:type=Logger,path=/,host=localhost
at com.testClass.execute(VmRequestAction.java:38)
... 생략 ...
2009. 4. 3. 오후 7:24:30 org.apache.catalina.core.StandardContext reload
정보: Reloading this Context has started
2009. 4. 3. 오후 7:24:30 org.apache.catalina.logger.LoggerBase stop
정보: unregistering logger Catalina:type=Logger,path=/,host=localhost
보다 자세한 정보는 링크 걸린 페이지에 가면 얻을 수 있다.
'Programming > JAVA/JSP' 카테고리의 다른 글
[JSP] 페이지 현재 경로, 이전 경로, 컨텍스트 얻기 (0) | 2009.04.14 |
---|---|
[Jsp] Session 값 전부 삭제 하기 (0) | 2009.04.14 |
[Java] MS-SQL 2000 연동 스토어드 프로시저 호출 관련 소스 (0) | 2009.04.13 |
MSDN 스토어드 프로시저 사용 방법 (0) | 2009.04.09 |
[Java] MS-SQL 2000 연동 스토어드 프로시저 호출 (0) | 2009.04.09 |