本文介绍了类“<CLASS_NAME>"在 web.xml 文件中指定了一个 main 方法和它的 servlet的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 NetBeans 7.1 并在其中创建了一个 servlet.现在当我运行它时,它给了我
I am using NetBeans 7.1 and made a servlet in it. Now when I am running it, it is giving me
类""既没有 main 方法,也没有在 web.xml 中指定的 servlet
在此之后,它又显示了一个错误:
After this, it is showing me one more error:
类 ' ' 没有 main 方法"
我不知道问题出在哪里.我已经卸载并安装了 NetBean 两次,但没有帮助.servlet 只是一个普通的 servlet,里面没有逻辑.
I can't figure out what the problem is. I have uninstalled and installed the NetBean twice but no help. The servlet is just an ordinary servlet with no logic in it.
推荐答案
经过长时间的搜索,我得到了我认为的答案.只需添加:
After a long search I got what I feel is the answer. Just add:
@WebServlet (name="name of servlet",urlPatterns={"/url patter of servlet"})
在你的班级之上.这对我有用.
above your class. This worked for me.
这篇关于类“<CLASS_NAME>"在 web.xml 文件中指定了一个 main 方法和它的 servlet的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!