初学Servlet,按照教程结果出现The requested resource is not available,求助。代码如下
web.xml:<?xmlversion="1.0"encoding="UTF-8"?><web-appxmlns:xsi="http://www.w3.org/2001...
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID"
version="2.5">
<!--根据Servlet规范,需要将Servlet部署到web.xml文件 ,该部署配置可以从examples下拷贝-->
<servlet>
<!--name给该Servlet取名,改名字可以自己定义-->
<servlet-name>MyFirstServlet</servlet-name>
<!--class指明该Servlet在哪包-->
<servlet-class>com.wispei.MyFirstServlet</servlet-class>
</servlet>
<!--Servlet的映射-->
<servlet-mapping>
<!--name要与Servlet的name一致,过程:通过url找到这里的pattern,然后找到name,然后看看有没有匹配的Servlet-name,找到就只想class-->
<servlet-name>MyFirstServlet</servlet-name>
<!--url名字可以自定义-->
<url-pattern>/MyFirstServlet</url-pattern>
</servlet-mapping>
</web-app>
MyFirstServlet.java
package com.test;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class MyFirstServlet implements Servlet{
//该函数用于初始化Servlet,把Servlet装载到内存中
//只会调用一次
public void init(ServletConfig config) throws ServletException{
}
//得到ServletConfig对象
public ServletConfig getServletConfig(){
return null;
}
//该函数是服务函数,业务逻辑代码在此处
//该函数每次都会被调用
public void service(ServletRequest request, ServletResponse response)
throws ServletException, java.io.IOException{
System.out.println("hello,word");
}
//该函数得到Servlet配置信息
public java.lang.String getServletInfo(){
return null;
}
public void destroy(){
}
}
已经在webapps文件的webtest文件夹下生产WEB-INF文件夹,WEB-INF文件夹有web.xml文件和classes文件夹,classes文件夹有com->test文件夹,里面有.class文件。
打开tomcat,在里面输入http://localhost:8080/webtest/MyFirstServlet 就显示那句话。 展开
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID"
version="2.5">
<!--根据Servlet规范,需要将Servlet部署到web.xml文件 ,该部署配置可以从examples下拷贝-->
<servlet>
<!--name给该Servlet取名,改名字可以自己定义-->
<servlet-name>MyFirstServlet</servlet-name>
<!--class指明该Servlet在哪包-->
<servlet-class>com.wispei.MyFirstServlet</servlet-class>
</servlet>
<!--Servlet的映射-->
<servlet-mapping>
<!--name要与Servlet的name一致,过程:通过url找到这里的pattern,然后找到name,然后看看有没有匹配的Servlet-name,找到就只想class-->
<servlet-name>MyFirstServlet</servlet-name>
<!--url名字可以自定义-->
<url-pattern>/MyFirstServlet</url-pattern>
</servlet-mapping>
</web-app>
MyFirstServlet.java
package com.test;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class MyFirstServlet implements Servlet{
//该函数用于初始化Servlet,把Servlet装载到内存中
//只会调用一次
public void init(ServletConfig config) throws ServletException{
}
//得到ServletConfig对象
public ServletConfig getServletConfig(){
return null;
}
//该函数是服务函数,业务逻辑代码在此处
//该函数每次都会被调用
public void service(ServletRequest request, ServletResponse response)
throws ServletException, java.io.IOException{
System.out.println("hello,word");
}
//该函数得到Servlet配置信息
public java.lang.String getServletInfo(){
return null;
}
public void destroy(){
}
}
已经在webapps文件的webtest文件夹下生产WEB-INF文件夹,WEB-INF文件夹有web.xml文件和classes文件夹,classes文件夹有com->test文件夹,里面有.class文件。
打开tomcat,在里面输入http://localhost:8080/webtest/MyFirstServlet 就显示那句话。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询