`
bulote
  • 浏览: 1353968 次
文章分类
社区版块
存档分类
最新评论

J2EE中HTTP method GET/Post is not supported by this URL

 
阅读更多

原因:

1,继承自HttpServlet的Servlet没有重写对于请求和响应的处理方法:doGet或doPost等方法;默认调用父类的doGet或doPost等方法;

2,父类HttpServlet的doGet或doPost等方法覆盖了你重写的doGet或doPost等方法;

不管是1或2,父类HttpServlet的doGet或doPost等方法的默认实现是返回状态代码为405的HTTP错误表示对于指定资源的请求方法不被允许。

<wbr></wbr>

解决方法:

1,子类重写doGet或doPost等方法;

2,在你扩展的Servlert中重写doGet或doPost等方法来处理请求和响应时不要调用父类HttpServlet的doGet或doPost等方法,即去掉super.doGet(request, response)和super.doPost(request, response);

<wbr></wbr>

值得注意的是

转发到另一个action并不会改变转发方式,也就是说,我在这个action里面的doPost方法转发给另一个action,另一个action必须在它的doPost方法里面接收

package com.xy.action;

import java.io.IOException;
import java.text.SimpleDateFormat;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.xy.dao.ITopicDao;
import com.xy.dao.impl.TopicDaoImpl;
import com.xy.entity.Topic;

public class PostAction extends HttpServlet
{

<wbr>protected void <strong>doPost</strong>(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException<br><wbr>{<br><wbr><wbr>ITopicDao itd = new TopicDaoImpl();</wbr></wbr></wbr></wbr>

<wbr><wbr>String title = request.getParameter("title");<br><wbr><wbr>String content = request.getParameter("content");<br><wbr><wbr>String pt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new java.util.Date());<br><wbr><wbr>String mt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new java.util.Date());<br><wbr><wbr>int bid = Integer.valueOf(request.getParameter("boardId"));<br><wbr><wbr>int uid = Integer.valueOf(request.getParameter("uId"));</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr>

<wbr><wbr>Topic t = new Topic();<br><wbr><wbr>t.setTitle(title);<br><wbr><wbr>t.setBoardId(bid);<br><wbr><wbr>t.setContent(content);<br><wbr><wbr>t.setPublishTime(pt);<br><wbr><wbr>t.setmodifyTime(mt);<br><wbr><wbr>t.setUid(uid);<br><wbr><wbr>itd.addTopic(t);</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr>

<wbr><wbr>RequestDispatcher dis = request.getRequestDispatcher("ToListAction");<br><wbr><wbr>dis.forward(request, response);<br><wbr>}</wbr></wbr></wbr></wbr></wbr>

}

也就是说:相应在ToListAction这个action里面,必须重写doPost方法。

分享到:
评论

相关推荐

    java解决405 - HTTP method GET is not supported by this URL

    当您遇到"405 - HTTP method GET is not supported by this URL"这样的问题时,通常意味着您的服务器端代码没有正确处理GET请求,或者请求被误定向到了一个不期望GET方法的Servlet。 首先,我们需要理解HTTP协议中...

    解决SVN上传提示Empty directoriesis not supported

    解决SVN上传提示Empty directoriesis not supported 解决SVN上传提示Empty directoriesis not supported

    Oracle 报错ORA-00845 MEMORY_TARGET not supported on this system

    Oracle数据库在运行过程中,经常会遇到各种错误代码,错误代码ORA-00845是其中的一个,它是指“MEMORY_TARGET not supported on this system”。这个错误一般发生在尝试在不支持MEMORY_TARGET参数的系统上设置该参数...

    Http-servlet请求源码

    本文将深入探讨HTTP Servlet请求的源码实现,并针对"HTTP method GET is not supported by this URL"这一常见错误进行分析和解决。 首先,让我们理解HTTP Servlet的工作原理。每当一个HTTP请求到达Web服务器时,...

    Python使用pip安装报错:is not a supported wheel on this platform的解决方法

    本文讲述了Python使用pip安装报错:is not a supported wheel on this platform的解决方法。分享给大家供大家参考,具体如下: 可能的原因1:安装的不是对应python版本的库,下载的库名中cp27代表python2.7,其它同理...

    RDPWraper解决win10无法远程桌面,提示not supported ,not listening的问题

    网上各种教程无法解决这个工具提示 not supported not listening问题,这个安装包给出了所有需要的文件,并给出了详细的指引。 绝大多数情况你会安装成功。如果你成功了,或者失败了,请给我评论。大家看评论区。

    EFI shell命令工具IA32和X64版本

    EFI Shell是EFI环境中的一种命令行工具,用于执行各种操作,如系统诊断、硬件测试、UEFI固件更新等。本篇文章将深入探讨EFI Shell命令工具在IA32和X64架构下的应用,以及如何通过U盘在EFI Shell中运行这些工具。 ...

    解决redhat 8.2 yum报错 This system is

    在Red Hat 8.2操作系统中,用户可能会遇到一个常见的问题,即在尝试使用`yum`命令安装软件时,系统返回错误提示"This system is not registered to Red Hat Subscription Management"。这个错误表明你的系统未注册到...

    http请求405错误方法不被允许的解决 (Method not allowed)

    主要介绍了http请求405错误方法不被允许的解决 (Method not allowed),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

    spring cloud feign不支持@RequestBody+ RequestMethod.GET报错的解决方法

    在使用spring cloud feign时,我们可能会遇到org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported的报错,这是因为feign client中的RequestMethod.GET或@...

    django 配置

    django 设置settings.py,本文以mysql 为例,说明怎样配置mysql d的连接

    mysql-connector-net-8.0.26-noinstall.rar

    C#连接MYSQL8.0的版本老是提示[Authentication method 'caching_sha2_password' not supported by any of the available plugins.] 这个错误,换低版本的MYSQL连接又没有问题,现在把我的经验分享一下,解决这个连接...

    qemu-kvm.tar.xz

    解决虚拟化软件版本问题导致虚拟机无法创建的问题,部分版本的qemu-kvm暂不支持setting MTU is not supported with this QEMU binary的操作,该版本编译可以支持。

    ThinkPHP6.1 Filesystem Driver aliyun not supported

    ThinkPHP6.1 Filesystem Driver aliyun not supported

    Senfore_DragDrop_v4.1

    This is caused by a quirk in WinZip; Apparently WinZip doesn't like IDataObject.GetData to be called before IDropTarget.Drop is called. ------------------------------------------- 5. Support and ...

    安装opencv所需文件(xvid,x264,ffmpeg等)

    对于linux下使用opencv不像windows那么方便,尤其整个安装过程,更甚者对于linux下opencv安装过程中要包含进去视频开发部分对于初学者来说是比较困难的。 这里是安装linux下opencv,并要使opencv包含视频开发(如使用...

    plex media server 1.25.4.5487 x86 windows exe版本

    解决部分视频不能播放并提示,File is unplayable. Color space is not supported.文件无法播放。不支持颜色空间。

    ip monitor

    Jun 08 00:02:46 localhost.localdomain firewalld[854]: WARNING: ICMP type 'beyond-scope' is not supported by the kernel for ipv6. Jun 08 00:02:46 localhost.localdomain firewalld[854]: WARNING: beyond-...

    plex media server 1.25.4.5487 x86_64_DSM7 群晖7版本

    plex media server 1.25.4.5487 x86_64_DSM7 群晖7版本 解决部分视频不能播放并提示,File is unplayable. Color space is not supported.文件无法播放。不支持颜色空间。

    海康威视NVR嵌入设备WEB程序

    ASP源代码, 海康威视NVR嵌入设备中是带有WEB程序的,但是却不提供源代码下载,http://192.168.5.107/doc/page/login.asp 这是我从DS-8632N-ST设备中导出的ASP程序, 大家可以参考一下。

Global site tag (gtag.js) - Google Analytics