Eclipse创建自定义HTML5,JSP模板

在Eclipse里面编写的html和jsp模板并不符合我们现在使用的html5的规范,对此可以更改默认设置

自定义JSP模板

首先可以创建一个web 动态工程,右击WebContent,选择新建一个JSP File。注意:JSP和HTML一样是要创建在服务器下的,即WebContent下。

具体步骤:

右击WebContent,选择新建一个JSP File,输入要创建的文件名,不要立即finish,点击Next

在弹出的页面我们选择最后一行的超链接"JSP Template",此处会跳转到"Preferences(Filtered)"

我们可以在左侧看到Preferences(Filtered) =》Web =》 JSP Files =》Editor =》Templates ,单击"JSP Templates";

点击右侧的“New…”我们进行如下填写:在Name里面填写: New JSPFile (html 5),在Context选择:New JSP,在Description中写 JSP with html markup ,在Pattern做如下填写:

1 <%@ page language="java" contentType="text/html; charset=${encoding}" 2 pageEncoding="${encoding}"%> 3 <!DOCTYPE html> 4 <html> 5 <head> 6 <meta charset="${encoding}"> 7 <title>Insert title here</title> 8 </head> 9 <body> 10 ${cursor} 11 </body> 12 </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwfpsf.html