HTTP method get is not supported by this URL

Source: Internet
Author: User

Servlet eroor: HTTP method get is not supported by this URL

Error message:

Type: status report

Message: HTTP method get is not supported by this URL

Description: The specified HTTP method is not allowed for the requested resource (HTTP method get is not supported by this URL ).

Cause:

1. The servlet inherited from httpservlet does not overwrite the processing method for requests and responses: doget or dopost; by default, it calls the doget or dopost methods of the parent class;

2. The doget or dopost methods of the parent class httpservlet overwrite the doget or dopost methods you have rewritten;

Whether it is 1 or 2, the default implementation of the doget or dopost methods of the parent class httpservlet is the return status.CodeAn HTTP Error of 405 indicates that the request method for the specified resource is not allowed.

Solution:

1. Subclass override doget or dopost methods;

2. Rewrite doget or dopost methods in your extended servlert to process requests and responses. Do not call the doget or dopost methods of the parent class httpservlet, that is, remove super. doget (request, response) and super. dopost (request, response );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.