본문 바로가기
JSP

[ JSP ] jsp 파일 파싱 에러

by 정윤재 2009. 3. 12.


Parsing of JSP File '/jsp/consult/cus_infor.jsp' failed:
/jsp/consult/cus_infor.jsp(1): page directive contentType at /jsp/consult/cus_infor1.jsp:1 previously defined at /jsp/consult/cus_infor.jsp:1
probably occurred due to an error in /jsp/consult/cus_infor.jsp line 1:
<%@page contentType="text/html;charset=euc-kr"%>
Thu Mar 12 15:43:37 GMT+09:00 2009

이런식으로 에러가 나타나면...

include 로 파일 불러 오는곳에서 한번 더 페이지 디렉티브를 쓰기 때문에

중복때문에 에러가 발생하는 것이므로 안에 들어가는 page 디렉티브는 삭제하여

주면 된다.

댓글