使用Resin3.0配置运行Java Servlet

2016-02-19 13:37 66 1 收藏

今天图老师小编要向大家分享个使用Resin3.0配置运行Java Servlet教程,过程简单易学,相信聪明的你一定能轻松get!

【 tulaoshi.com - 编程语言 】

前提:正确安装JDK和Resin3.0
  这个是原始文档,我做一下注释
  Configuring the web.XML
  The following is a complete working web.xml to run this example.
  The servlet-mapping tells Resin that the URL /hello should invoke the hello-world servlet.
  The servlet tells Resin that hello-world uses the test.HelloWorld class and that the value of the greeting init parameter is Hello World.
  
  WEB-INF/web.xml
  web-app>
  servlet-mapping url-pattern='/hello'
  servlet-name='hello-world'/>
  
  servlet servlet-name='hello-world'
  servlet-class='test.HelloWorld'>
  init-param greeting='Hello, World'/>
  /web-app>
  
  WEB-INF/web.xml //web.xml不一定有自己新建一个即可,这个是我改过的!
  web-app>
  servlet servlet-name='hello-world'
  servlet-class='test.HelloWorld'/> servlet-mapping url-pattern='/hello'
  servlet-name='hello-world'/>
  /web-app>
  
  原始文档中有三个错误,我也不知道是不是我错了!但是我改过三个错误,运行成功!
  1。servlet servlet-name标签应该放在servlet-mapping前面。
  2。servlet servlet-name='hello-world' servlet-class='test.HelloWorld'>标签结尾少了一个" / "。
  3。init-param greeting='Hello, World'/> 这句标签我去掉了,不然也无法运行!
  The Java code, HelloWorld.java belongs in
  
  $app-dir/WEB-INF/classes/test/HelloWorld.java
  
  Or, if you're compiling the servlet yourself, the class file belongs in
  
  $app-dir/WEB-INF/classes/test/HelloWorld.class
  
  Following is the actual servlet code. It just prints a trivial Html page filled with the greeting specified in the web.xml.
  
  init() and destroy() are included mostly for illustration. Resin will call init() when it starts the servlet and destroy before Resin destroys it.
  
  package test;
  
  import java.io.*;
  import javax.servlet.*;
  import javax.servlet.http.*;
  
  public class HelloWorld extends HttpServlet {
  private String greeting;
  
  public void init()
  throws ServletException
  {
  greeting = getInitParameter("greeting");
  }
  
  public void doGet(HttpServletRequest request,
  HttpServletResponse response)
  throws ServletException, IOException
  {
  PrintWriter out = response.getWriter();
  
  out.println("title>" + greeting + "/title>");
  out.println("h1>" + greeting + "/h1>");
  }
  
  public void destroy()
  {
  // nothing to do
  }
  }
  
  它文档中的这个用了那个init-param greeting='Hello, World'/>标签,由于我删除了,所以无法使用!
  就用着吧!保存为HelloWorld.java放在WEB-INF/classes/test目录下面。
  
  package test;
  import java.io.*;
  import java.util.*;
  import javax.servlet.*;
  import javax.servlet.http.*;
  
  public class HelloWorld extends HttpServlet{
  public void doGet(HttpServletRequest req, HttpServletResponse res)
  throws ServletException, IOException
  {
  res.setContentType("text/html");
  PrintWriter pw = res.getWriter();
  pw.println("!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">");
  pw.println("head>");
  pw.println("meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">");
  pw.println("!-- The Servlet eXPression tags interpolate script variables into the HTML --");
  pw.println("title>Hello, world!/title>");
  pw.println("/head>");
  pw.println("body bgcolor=#cc99dd>");
  pw.println("h1>Hello, world!/h1>");
  pw.println("/body>");
  pw.close();
  }
  }
  
  开启Resin服务,在浏览器中输入 http://localhost:8080/hello
  即可以正确访问!

来源:http://www.tulaoshi.com/n/20160219/1604821.html

延伸阅读
Servlet是一种独立于平台和协议的服务器端的Java应用程序,可以生成动态的Web页面 一、概述 Servlet是一种独立于平台和协议的服务器端的Java应用程序,可以生成动态的Web页面。 Servlet是位于Web 服务器内部的服务器端的Java应用程序,与传统的从命令行启动的Java应用程序不同,Servlet由Web服务器进行加载,该Web服务器必须包含支持Servlet...
Servlet是一种独立于平台和协议的服务器端的Java应用程序,可以生成动态的Web页面 一、概述 Servlet是一种独立于平台和协议的服务器端的Java应用程序,可以生成动态的Web页面。 Servlet是位于Web 服务器内部的服务器端的Java应用程序,与传统的从命令行启动的Java应用程序不同,Servlet由Web服务器进行加载,该Web服务器必须包含支持Serv...
类为 run.class 包:package localJava.client.dynamic 类内要求: import org.apache.wsif.WSIFMessage; !-- frame contents -- !-- /frame contents -- import org.apache.wsif.WSIFException; import org.apache.wsif.WSIFOperation; import org.apache.wsif.WSIFPort; import org.apache.wsif.WSIFService; import o...
各位大侠可能会对263电子邮箱中的"上传附件"功能有印象,就是:在浏览 器中点击"浏览",弹出一个对话框,选中文件后,单击"确定",文件就被上传到了服务器端。 因为需要,就到网上找了几个控件,如SmartUpload等,但都觉得不好用,或者 说是不合用,决定自己做一个。近日看到网上也有人提问怎么上载文件,于...
标签: Web开发
    Ajax异步请求,servlet产生随机数据,Html页面无刷新显示。 运行环境:jdk1.5+tomcat 5.5 一、ajaxServlet.java package com;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import ...

经验教程

418

收藏

56
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部