Spring boot 한글처리

2021. 1. 11. 23:18Java/Spring Boot

Centos7에서 특별한 조치 없이 한글 잘 나옴

단, html은 아래 메타 태그를 넣어야 한글이 안 깨짐

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
테스트 한글
</body>
</html>

'Java > Spring Boot' 카테고리의 다른 글

Spring Boot JDK 1.8 셋팅  (0) 2021.03.05
String boot JSP 셋팅  (0) 2021.01.14
The requested profile "pom.xml" could not be activated because it does not exist.  (0) 2021.01.13
Spring boot war 생성  (0) 2021.01.13
spring 참고자료  (0) 2021.01.10