반응형
기본적으로 이클립스와 STS에는 HTML4.1? 템플릿만 존재합니다. 현재는 HTML5가 빠르게 늘어나고 권장되고 있기에
이클립스에 HTML5 템플릿을 추가해볼겁니다. 사실 HTML5 템플릿은 매우 간소화되었는데..
필요할때면 까먹어버리므로 기록을 위해 적어둡니다.
Preferences -> Web -> JSP Files -> Editor -> Templates 탭
구찮으신분들은 Ctrl + N -> Jsp File -> 파일명 정하고 Next -> Previews 하단의 'JSP Templates' 파란색 링크 클릭
New 누르고
Name : New JSP Files (html5)
Context : New JSP
Description : This is HTML5 Templates
Pattern :
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 | <%@ page language="java" contentType="text/html; charset=${encoding}" pageEncoding="${encoding}"%> <!DOCTYPE html> <html> <head> <meta charset="${encoding}"> <title>Insert title here</title> </head> <body> ${cursor} </body> </html> | cs |
패턴은 복붙,
참조출처 :
http://blog.swcode.net/entry/Eclipse-JSP-HTML5-%ED%85%9C%ED%94%8C%EB%A6%BF-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0
반응형
'디버깅' 카테고리의 다른 글
[Spring] Illegal overloaded getter method with ambiguous type for property '컬럼명' (0) | 2018.04.02 |
---|---|
[Mobile, HTML] 모바일웹에서 input text클릭 시 확대 막아주기 (0) | 2018.04.01 |
[Java] .toString() 보다는 String.valueOf()를 사용하자.. (Null Point Exception) (1) | 2018.02.08 |
[Eclipse] 이클립스 import시 단축키 세팅 & 작동하지 않을때 (1) | 2017.08.08 |
[Java] java.net.SocketException: Unexpected end of file from server (URL Encoding) (0) | 2017.04.15 |