반응형
org.apache.jasper.JasperException: /WEB-INF/views/board/../subPage/header.jsp (line: [8], column: [1]) Page directive: illegal to have multiple occurrences of 'contentType' with different values (old: [text/html; charset=UTF-8], new: [text/html;charset=UTF-8])
JSP 헤더나 풋터 같은 액션태그를 사용할 때 컨텐트 타입의 형식이 맞지 않으면 발생하는 에러입니다.
설정이같아도 형식이 다르면 에러가 날 수 있습니다.
액션태그 대상과 컨텐트 타입을 맞춰줍시다.
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
반응형
'개발문제해결 > Exception' 카테고리의 다른 글
JQuery 에러 “TypeError: $.getJSON is not a function” (0) | 2018.02.24 |
---|---|
ORA-00904 에러 부적절한 식별자 (0) | 2018.02.18 |
예외 - Error creating bean with name 'sqlSessionFactory' (0) | 2018.02.17 |