일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 페이징
- 단축키
- 가변인자
- 상속예제
- 전체
- 전자정부
- 야구게임
- 이클립스
- Login with OAuth Authentication
- jquery
- 형변환
- 업캐스팅
- while
- Random
- 자바 야구게임
- 다운캐스팅
- Full text
- 상속
- 전체텍스트
- 다형성
- 로또
- 25가지 효율적인 sql작성법
- 추상클래스
- IBatis procedure
- full text indexing
- 스프링
- angular2
- Validations
- 자바
Archives
- Today
- Total
nalaolla
JSP UTF-8 한글깨짐 처리방법 본문
728x90
반응형
1. JSP 페이지 1번 줄에 셋팅
<%@ page language=
"java"
contentType=
"text/html; charset=utf-8"
pageEncoding=
"utf-8"
%>
2.
post 방식의 파라미터를 받는 페이지마다 해당 라인 추가
request.setCharacterEncoding(
"utf-8"
);
3.
톰캣 server.xml 파일에 Connector마다 URIEncoding="utf-8" 추가
<
connector
uriencoding
=
"utf-8"
connectiontimeout
=
"20000"
port
=
"8080"
protocol
=
"HTTP/1.1"
redirectport
=
"8443"
>
</
connector
>
4. 톰캣 web.xml 파일 수정
<
filter
>
<
filter-name
>setCharacterEncodingFilter</
filter-name
>
<
filter-class
>org.apache.catalina.filters.SetCharacterEncodingFilter</
filter-class
>
<
init-param
>
<
param-name
>encoding</
param-name
>
<
param-value
>UTF-8</
param-value
>
</
init-param
>
<
async-supported
>true</
async-supported
>
</
filter
>
728x90
반응형
'JSP' 카테고리의 다른 글
JSP 내장객체 9가지 (0) | 2015.12.28 |
---|---|
[JSPF] Jsp Include 방식의 차이와 JSPF 설명 (0) | 2015.12.23 |
DOCTYPE 정의 및 선언(DTD) (0) | 2015.12.23 |
[TIP] JSP 에서 ASP의 response.end 와 같은 용법 사용하기 (0) | 2015.12.23 |
jsp 함수 정리 (0) | 2015.12.23 |