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" %>
'개인기록' 카테고리의 다른 글
[오류/해결] Public Key Retrieval is not allowed (0) | 2022.11.13 |
---|---|
[오류/해결] Property [name] not found on type [dto(혹은 vo)] (0) | 2022.11.08 |
[오류/해결] spring boot mybatis insert가 안되는 오류 (0) | 2022.11.05 |
[오류/해결] spring boot에서 mybatis 테스트하기 (0) | 2022.10.30 |
[해결] jsp에서 css, js 경로를 못 찾는 문제 (0) | 2022.09.23 |