728x90
- 한글깨짐 방지
<-- 한글깨짐 방지 -->
<mvc:annotation-driven>
<mvc:message-converters> <!-- @ResponseBody로 String 처리할때 한글처리 -->
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
728x90
'SPRING' 카테고리의 다른 글
[Spring Mybatis] insert, update, delete return을 int로 하는 이유 (0) | 2022.06.24 |
---|---|
[Spring] 와일드 카드 이용 tiles (0) | 2022.06.16 |
[Spring] Annotation 어노테이션 - @Component (0) | 2022.05.11 |
[Spring] Annotation 어노테이션 설정 (0) | 2022.05.11 |
[Spring] 서블릿 분리 & 환경설정 (0) | 2022.05.11 |