当前位置: 技术问答>java相关
用<form action="/myweb/servlet/HelloWorldExample" method="post">结果显示错误
来源: 互联网 发布时间:2015-08-19
本文导语: 错误信息如下: The specified HTTP method is not allowed for the requested resource (HTTP method POST is not supported by this URL). 但是我改用get方法时,就可以 当我将HelloWorldExample.java,.class都copy到customctrl目录下时,用 出现...
错误信息如下:
The specified HTTP method is not allowed for the requested resource (HTTP method POST is not supported by this URL).
但是我改用get方法时,就可以
当我将HelloWorldExample.java,.class都copy到customctrl目录下时,用
出现如下错误:
javax.servlet.ServletException: Cannot allocate servlet instance for path /myweb/servlet/customctrl.HelloWorldExample
新手不知是何原因,请赐教
The specified HTTP method is not allowed for the requested resource (HTTP method POST is not supported by this URL).
但是我改用get方法时,就可以
当我将HelloWorldExample.java,.class都copy到customctrl目录下时,用
出现如下错误:
javax.servlet.ServletException: Cannot allocate servlet instance for path /myweb/servlet/customctrl.HelloWorldExample
新手不知是何原因,请赐教
|
"/myweb/servlet/customctrl.HelloWorldExample“
好象是因为你的servlet里面没有实现doPost()方法吧。
好象是因为你的servlet里面没有实现doPost()方法吧。