tomcat6.0 Publish project open JSP page error: HTTP Status 500-javax.servlet.servletexception

Source: Internet
Author: User

today, the problem with a tomcat deployment is rooted in the server.xml configuration.
Error such as title, say HTTP Status 500- Javax.servlet.ServletException:XXX file can not find, after several search test, the program is not error, some people say is Jsp-api.jar and Serlet-api.jar package conflict, debugging found does not solve the problem, later found that the problem lies:
The starting Server.xml configuration is configured for the host and its context as follows:
MyApp".....>
?????? <context path= "" docbase= ". /tomcat/webapps/myapp"reloadable=" false "/>
</Host>

This is how the app was accessed in the test: Http://localhost:8080/myapp
The new deployment is accessed in the following way: http://10.10.10.20:8080, no application name. This is indeed accessible, but when you access the JSP page directly (for an action jump), the error shown in title appears.
Later changed to the following form, there is no error, the access address also need not change:
/tomcat/webapps".....>
?????? <context path= "" docbase= "myapp" reloadable= "false"/>
</Host>

tomcat6.0 Publish project open JSP page error: HTTP Status 500-javax.servlet.servletexception

Related Article

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.