Configure Tomcat below servlet is not successful today

Source: Internet
Author: User

Create a new web_info under MyApps

And then build classes folders and Web.xml files.

Creates a new text file Testservlet, enters the code, and changes the suffix name to. java

Enter Javac C:/tomcat5.0/webapps/myapps/testservlet.java at the command line

There's a mistake, saying you can't find Javax.servlet.

So the common/lib under the Servlet_api.jar to C:/jdk/jre/lib/ext under,

Run Javac again, success.

Add the following code to the Web.xml:

<?xml version= "1.0" encoding= "Iso-8859-1"?>

<! DOCTYPE Web-app
Public "-//sun Microsystems, INC.//DTD Web application 2.3//en"
"Http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>

<display-name>my the Examples</display-name>
<description>
My A-Servlet examples!
</description>

<servlet>
<servlet-name>TestServlet</servlet-name>
<servlet-class>TestServlet</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>TestServlet</servlet-name>
<url-pattern>/TestServlet</url-pattern>
</servlet-mapping>

</web-app>

Enter Http://localhost:8080/TestServlet in IE

The test did not succeed. reported 404 errors.

Not resolved yet ...

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.