Article:
 |
|
Java Web Applications
|
| Subject: |
|
error 404- servlet would not load |
| Date: |
|
2003-07-14 04:40:52 |
| From: |
|
anonymous2
|
Response to: error 404- servlet would not load
|
|
I have my project folder and i have made modification in my server.xml i have added
context path
in the web.xml in the webapps /web-inf folder i am doing the servlet mapping.. but it is taking the file from the root only
<web-app>
<display-name>Application </display-name>
<session-timeout>30</session-timeout>
<servlet>
<servlet-name>LoginServlet</servlet-name>
<servlet-class>com.project.LoginServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>project/servlet/*</url-pattern>
</servlet-mapping>
</web-app>
what is the solution ?..plz write back soon
vijay_shah_78@rediffmail.com
|
Showing messages 1 through 1 of 1.
-
error 404- servlet would not load
2005-11-17 02:41:24
Shreyas
[View]
bin, common, conf, logs, server, shared, temp and webapps
The classpath is an environment variable that tells the java compiler javac.exe where to look for class files to import or java.exe where to find class files to interpret.
The path is an environment variable that tells the command processor where to look for executable files. e.g. *.exe, *.com and *.bat files.
Compiling a servlet
You require to include in your classpath
D:\j2sdk1.4.2_03\lib\tools.jar, where j2sdk1.4.2_03 is a java installation. now you can compile servlet source file, with javac Servlet_sourcename.java
Setting tomcat to allow servlets to run
create your WApp folder containing web application this contains WEB-INF and folders like classes, lib and web.xml folders.
In web.xml folder of above web application you require to include
<servlet>
<servlet-name>Servlet_Name</servlet-name>
<servlet-class>Servlet_class</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Servlet_Name</servlet-name>
<url-pattern>/Servlet_class</url-pattern>
</servlet-mapping>
Add following text in tomcat_instal\conf\server.xml
before </Host> tag
<Context path="/WApp"
docBase="D:\tomcat\webapps\webAppln">
</Context>
To execute servlet on Tomcat server
at classpath include tomcat_dir\bin
and type at command prompt startup
At browser
http://localhost:8080/WApp/Servlet-class
will give you servlet.