Myeclipse2015修改Servlet模板

发布于 2022-09-02 13:34:42 字数 2252 浏览 12 评论 0

Myeclipse2015 Stable 2.0找到了com.genuitec.eclipse.wizards_13.0.0.me201502130035.jar文件,并修改了里面的Servlet.java文件,并且修改如下:

#---------------------------------------------#
# <aw:description>Template for Servlet</aw:description>
# <aw:version>1.1</aw:version>
# <aw:date>04/05/2003</aw:date>
# <aw:author>Ferret Renaud</aw:author>
#---------------------------------------------#

<aw:import>java.io.IOException</aw:import>
<aw:import>java.io.PrintWriter</aw:import>

<aw:import>javax.servlet.ServletException</aw:import>
<aw:import>javax.servlet.http.HttpServlet</aw:import>
<aw:import>javax.servlet.http.HttpServletRequest</aw:import>
<aw:import>javax.servlet.http.HttpServletResponse</aw:import>

<aw:parentClass>javax.servlet.http.HttpServlet</aw:parentClass>

<aw:constructor name="c1">

    public <aw:className/>() {
        super();
    }

</aw:constructor> 
 
<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 {

    }

</aw:method>

<aw:method name="doPut">

    public void doPut(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {

    }

</aw:method>

<aw:method name="doDelete">
    public void doDelete(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {


    }

</aw:method>

<aw:method name="init">

    public void init() throws ServletException {
        
    }

</aw:method>

<aw:method name="destroy">

    public void destroy() {
        super.destroy(); 

    }

</aw:method>

<aw:method name="getServletInfo">

    public String getServletInfo() {
        return "This is my default servlet created by Eclipse";
    }

</aw:method>

重启MyEclipse后新建的Servlet并没有变化,还是有很多的注释,并没有变化,求解原因。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文