개인기록

[오류/해결] jsp 오류 Page directive: illegal to have multiple occurrences of contentType with different values

ran4 2022. 11. 9. 15:18

 

jsp를 사용하던 중 해당 오류가 발생했다 

 

 

 

오류메세지를 읽어보면 알겠지만 header.jsp와 현재 jsp 파일의 인코딩 형식이 달라서 발생했다

(old: [text/html;charset=UTF-8], new: [text/html; charset=UTF-8])

 

 

contentType의 "text/html; charser=UTF-8" 부분의 띄어쓰기를 통일시키면 해결된다 

<!-- 둘 중 하나로 통일 -->
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>