[Eclipse]이클립스에서 새파일 jsp 에서 기본html5 와 문자셋 utf-8로 설정방법
2014. 6. 13. 15:41ㆍ개발관련기록/Eclipse
반응형
이클립스에서 새파일 jsp 에서 기본html5 와 문자셋 utf-8로 설정방법
1. jsp 템를릿 에 아래와 같이 신규 값 저장
<%@ page language="java" contentType="text/html; charset=${encoding}" pageEncoding="${encoding}"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="${encoding}">
<title>Insert title here</title>
</head>
<body>
${cursor}
</body>
</html>
2. 기본생성되는 JSP 파일 UTF-8로 기본세팅처리
반응형
'개발관련기록 > Eclipse' 카테고리의 다른 글
Eclipse Error (Failed to create the Java Virtual Machine.) (0) | 2014.03.20 |
---|---|
[Eclipse]JSP html5 Template (0) | 2014.03.14 |
[이클립스]나도 몰랐던 기능 Palette 그리고 HTML5 (0) | 2014.02.07 |
Eclipse 에서 web Project Import 시 문제(bug) (0) | 2012.10.24 |
[Ecllipse] Ecllipse 이클립스 단축키 (1) | 2012.01.06 |