Skip to content

Instantly share code, notes, and snippets.

View ppeeou's full-sized avatar
🎯
Focusing

hyunwoo jo ppeeou

🎯
Focusing
View GitHub Profile
@ppeeou
ppeeou / spring utf-8 설정
Created February 19, 2017 13:32
spring utf-8 설정
<!--web.xml-->
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>