Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 servlet 中,我使用了 doPost() 方法,并且在运行 servlet 时,它给出了 http 方法 doGet 不受此 url 支持。我在 web.xml 中设置了 POST GET 。仍然得到方法 doGet() 未实现。有时此 URL 不支持给我 doPost()。如何解决这些?
检查您的 servletdoGet()的doPost()实现,看起来您刚刚创建了一个 setvlet,并且 IDE 添加了一个基本模板方法,该方法引发了一个未实现的异常
doGet()
doPost()