mustache 한글 깨짐 인코딩 오류

준우·2023년 3월 13일
0

Error Report

목록 보기
11/14
post-thumbnail

문제 상황

  • 스프링부트 3.0.4 버전에서 mustache 파일 내 한글 깨짐 오류가 발생했다.

mustache 파일

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>파일 확장자 제한</title>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body>
<h1>파일 확장자 차단</h1>
<hr>
<p>파일 확장자에 따라 특정 형식의 파일을 첨부하거나 전송하지 못하도록 제한</p>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>

해결 방법

프로젝트 내 src/main/resources/application.yml 혹은 application.properties 파일에 아래 코드를 추가한다.

yml 파일

server:
  servlet:
    encoding:
      force: true

properties 파일

server.servlet.encoding.force=true

0개의 댓글