"HTTP status 404-no result defined for Action ****** and result" error Solution

Source: Internet
Author: User

This problem plagued me one afternoon. I checked some struts getting started tutorials on the Internet at night to find out the key issue, because my struts. xml configuration is incorrect. My original struts. xmlCodeAs follows:

   XML  Version = "1.0"  Encoding = UTF-8" ?> Doctype  Struts  Public  "-// Apache Software Foundation // DTD struts configuration 2.1 // en"  Http://struts.apache.org/dtds/struts-2.1.dtd" > Struts >Package  Name = "Struts2"  Extends = "Struts-Default" > Action  Name = "Query"  Class = "Chapter7.action. queryaction" >ResultName="Result">/Result. jspResult>ResultName="Error">/Error. jspResult>Action>Package>Struts> 

You need to change the above Code to the following code:

  XML  Version = "1.0"  Encoding = UTF-8" ?> Doctype  Struts  Public  "-// Apache Software Foundation // DTD struts configuration 2.1 // en"  Http://struts.apache.org/dtds/struts-2.1.dtd" > Struts > Package  Name = "Struts2" Namespace = "/"  Extends = "Struts-Default" > Action  Name = "Query"  Class = "Chapter7.action. queryaction" >ResultName="Result">/Result. jspResult>ResultName="Error">/Error. jspResult>Action>Package>Struts> 

That is Namespace = "/" extends = "struts-Default">.

the action interface is accessed through http: // localhost: 8080/strutstest1/query. Action. If namespace is changed to namespace = "/Hello", the access address on the Action interface should be changed to http: // localhost: 8080/strutstest1/Hello/query. Action.

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.