在myeclipse8.5中修改jsp模板

我的MyEclipse8.5装在D:\AppData\Local\Genuitec\MyEclipse8.5下,

找到:D:\AppData\Local\Genuitec\Common\plugins\com.genuitec.eclipse.wizards_8.5.0.me201003052220.jar

下面的templates文件夹下可以选择要修改的文件类型,eg:JSPOR  HTML ……然后找到后自行修改!

(之前的版本,比如MyEclipse6.x版本,修改模板则在安装目录下的MyEclipse\eclipse\plugins中的com.genuitec.eclipse.wizards_6.x.x.xxxxxxx.

这次我的修改的是JSP模板,找到文件夹templates后再进行jsp文件夹中打开文件Jsp.vtl

修改成如下:

 

#*---------------------------------------------#
# Template for a JSP
# @version: 1.2
# @author: xxx
#---------------------------------------------#
*#<%@ page language="java" import="java.util.*"pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
  <head>
   <title>hello darling</title>
  </head>
 
  <body>
    This is myJSP page. <br>
  </body>
</html>

修改成自己喜欢的样子就行

你可能感兴趣的:(jsp,MyEclipse,模板,8.5)