林's

[Spring Boot] 언어셋 설정하는 방법 본문

프로그래밍/웹백앤드

[Spring Boot] 언어셋 설정하는 방법

풀림이 2019. 9. 29. 23:08

스프링부트는 자체적으로 인코딩 필터를 가지고 있기 때문에

과거에 우리가 인코딩 필터를 직접 만들어 쓰던 수고로움을 덜어줄 수 있습니다.

바로 application.properties 파일을 사용하는 것인데요. 사용법은 간단합니다!

 

application.properties에 다음의 세줄만 입력해주시면 끝!

spring.http.encoding.charset=UTF-8
spring.http.encoding.enabled=true
spring.http.encoding.force=true

 

어플리케이션 프로퍼티에 위의 값을 추가해주세요.

 

Comments