방명록
- [Spring][문제해결] Spring의 web.xml 한글 깨짐 해결2022년 08월 29일 14시 50분 55초에 업로드 된 글입니다.작성자: DandyNow728x90반응형
스프링 프로젝트 실행 시 [그림 1]과 같이 한글 깨짐 현상이 발생한다. [그림 2]와 같이 한글을 정상적으로 출력하려면 web.xml에 "한글 변환 필터" 코드를 추가하면 된다. 아래 코드에서 "한글 변환 필터 시작"부터 "한글 변환 필터 끝" 주석의 코드를 복붙 하자!
src\main\webapp\WEB-INF\web.xml
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <!-- The definition of the Root Spring Container shared by all Servlets and Filters --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/root-context.xml</param-value> </context-param> <!-- Creates the Spring Container shared by all Servlets and Filters --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- Processes application requests --> <servlet> <servlet-name>appServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>appServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- 한글 변환 필터 시작 --> <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> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- 한글 변환 필터 끝 --> </web-app>
728x90반응형'언어·프레임워크 > Spring' 카테고리의 다른 글
[스프링][문제해결] MySQL LIMIT 이용 페이징 처리시 페이지 번호 클릭 이동이 안되는 문제 (0) 2022.06.24 [스프링] MySQL 페이징 처리 쿼리 (0) 2022.06.23 [스프링] Oracle의 nextval 함수를 MySQL에서 처리하는 방법 (0) 2022.06.20 [스프링][문제해결] MariaDB와 log4jdbc 관련 에러 (0) 2022.06.19 [스프링][문제해결] org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): (0) 2022.06.15 다음글이 없습니다.이전글이 없습니다.댓글