[Eclipse]JSP html5 Template

2014. 3. 14. 08:50개발관련기록/Eclipse

반응형

1. 이클립스 실행

 

 

2. window -> Preference

 

 

3. Web -> JSP File -> Editor -> Templates

 

 

 

 

4. New 클릭!

 

 

 

 

 

 

<%@ page language="java" contentType="text/html; charset=${encoding}"

    pageEncoding="${encoding}"%>

 

<!DOCTYPE html>

<html>

<head>

<meta charset="${encoding}">

<title>JSP</title>

</head>

<body>

${cursor}

 

</body>

</html>

 

 

 

 

반응형