修改 MyEclipse 中的 jsp 和 servlet 模板
Posted MarcoReus
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改 MyEclipse 中的 jsp 和 servlet 模板相关的知识,希望对你有一定的参考价值。
找到 MyEclipse/Common/plugins/com.genuitec.eclipse.wizards_9.0.0.me201211011550.jar 这个文件(wizards后面的数字可能不同)
servlet 模板为 .jar/templates/Servlet.java
<aw:method name="doGet">
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
}
</aw:method>
<aw:method name="doPost">
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
</aw:method>
jsp 模板为: .jar/templates/jsp/Jsp.vtl
#*---------------------------------------------#
# Template for a JSP
# @version: 1.2
# @author: Ferret Renaud
# @author: Jed Anderson
#---------------------------------------------#
*#<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
以上是关于修改 MyEclipse 中的 jsp 和 servlet 模板的主要内容,如果未能解决你的问题,请参考以下文章
坑人的MyEclipse之-修改JSP页面的JavaScript背景颜色