关于SERVLET的问题。MYECLIPSE 应该都设置好了 。创建WEB工程 创建SERVLET 然后写了如下程序。有.CLASS文
importjava.io.*;importjavax.servlet.*;importjavax.servlet.http.*;/***HelloWorld!servl...
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
/**
* Hello World! servlet
*/
public class ServletHello extends HttpServlet
{
/**
* Respond to any HTTP GET request with an
* HTML Hello World! page.
*/
public void doGet (HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
// Set the HTTP content type in response header
response.setContentType("text/html; charset=\"UTF-8\"");
// Obtain a PrintWriter object for creating the body
// of the response
PrintWriter servletOut = response.getWriter();
// Create the body of the response
servletOut.println(
"<!DOCTYPE html \n" +
" PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \n" +
" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> \n" +
"<html xmlns='http://www.w3.org/1999/xhtml'> \n" +
" <head> \n" +
" <title> \n" +
" ServletHello.java \n" +
" </title> \n" +
" </head> \n" +
" <body> \n" +
" <p> \n" +
" Hello World! \n" +
" </p> \n" +
" </body> \n" +
"</html> ");
servletOut.close();
}
}
但是运行后只显示的是webroot 下的默认INDEX.JSP 不是我写得这个程序啊。。。急啊。。到底怎么弄。分没多少。。全给了
路径是D:\MyEclipse for Spring 9\workplace\DK\WebRoot
然后SERVLET的路径是D:\MyEclipse for Spring 9\workplace\DK\src\ServletHello.java
.class的路径是D:\MyEclipse for Spring 9\workplace\DK\WebRoot\WEB-INF\classes\ServletHello.class
如果我要运行。。。我写得这个程序。。。怎么弄呢。。。 展开
import javax.servlet.*;
import javax.servlet.http.*;
/**
* Hello World! servlet
*/
public class ServletHello extends HttpServlet
{
/**
* Respond to any HTTP GET request with an
* HTML Hello World! page.
*/
public void doGet (HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
// Set the HTTP content type in response header
response.setContentType("text/html; charset=\"UTF-8\"");
// Obtain a PrintWriter object for creating the body
// of the response
PrintWriter servletOut = response.getWriter();
// Create the body of the response
servletOut.println(
"<!DOCTYPE html \n" +
" PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \n" +
" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> \n" +
"<html xmlns='http://www.w3.org/1999/xhtml'> \n" +
" <head> \n" +
" <title> \n" +
" ServletHello.java \n" +
" </title> \n" +
" </head> \n" +
" <body> \n" +
" <p> \n" +
" Hello World! \n" +
" </p> \n" +
" </body> \n" +
"</html> ");
servletOut.close();
}
}
但是运行后只显示的是webroot 下的默认INDEX.JSP 不是我写得这个程序啊。。。急啊。。到底怎么弄。分没多少。。全给了
路径是D:\MyEclipse for Spring 9\workplace\DK\WebRoot
然后SERVLET的路径是D:\MyEclipse for Spring 9\workplace\DK\src\ServletHello.java
.class的路径是D:\MyEclipse for Spring 9\workplace\DK\WebRoot\WEB-INF\classes\ServletHello.class
如果我要运行。。。我写得这个程序。。。怎么弄呢。。。 展开
4个回答
展开全部
如果用myeclipse自动创建的就不用配置web.xml了。你在浏览器地址直接输入路径不就可以出来了,所以显示index.jsp很正常
http://localhost:tomcat地址没改应该是8080:/项目名称/ServletHello
貌似是这样哈...
http://localhost:tomcat地址没改应该是8080:/项目名称/ServletHello
貌似是这样哈...
追问
已经 弄好了,现在又有个问题架设了FMS 和TOMCAT 2个服务器但是不知道为什么冲突了。端口是不同的啊。不能同时架设么?
展开全部
还是问哈别人吧,我也刚学JSP
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这个程序写的有问题,还有就是你是怎么运行的啊?有没有配置好web。xml文件啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要配置web.xml,同时也要把tomcat里的servlet.jar文件加到你的项目路径下,上网搜一下怎么配置吧,很简单的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询