본문 바로가기
IT/JSP

[JSP] - 16. application - 로그 기록 파일 만드는 방법

by 차이나는 개발자 2020. 7. 22.
728x90
반응형

#application - 로그 기록 파일 만드는 방법

 

 

#로그기록

-application 기본 객체는 웹 컨테이너가 사용하는 로그 파일에 로그 메시지를 기록할 수 있도록 메서드를 제공하고있다.

-배포(블로그 [JSP 기초] 12. 웹어플리케이션 배포(.war)글 참고)

<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>logTest.jsp</title>
</head>
<body>
	<%
		application.log("==========application log==========");
	
		log("==========jsp log==========");
	%>
</body>
</html>

 

 

-이클립스상에서 결과화면

 

 

-logs 폴더에 추가된것을 확인 할 수가 있다.

 

 

 

728x90
반응형

댓글