처음 스프링 레거시 프로젝트를 만들어 서버를 띄워보면 위와 같이 물음표로 한글이 깨져 보입니다.
home.jsp 맨 위에 다음을 추가해줍니다.
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
src/main/views/home.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>
Hello world!
</h1>
<P> The time on the server is ${serverTime}. </P>
<p> 하이 </p>
</body>
</html>