`
newleague
  • 浏览: 1500810 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类

一个简单jsp-servlet例子

阅读更多

以下的简单 jsp-servlet 例子流程为:

index.jsp 提交一个 form 表单, tomcat 容器根据 form 中所定义的 action 从 web.xml 找到与之响应的 servlet : Hello.java ,根据 form 中定义的 method 找到 servlet 处理该请求的方法: doPost() ,调用该方法做一定的逻辑处理之后,跳转到另一个页面: result.jsp ;

 

 以下为源码:

Hello.java

view plaincopy to clipboardprint?
import java.io.IOException;  
import javax.servlet.ServletException;  
import javax.servlet.http.HttpServlet;  
import javax.servlet.http.HttpServletRequest;  
import javax.servlet.http.HttpServletResponse;  
public class Hello extends HttpServlet {  
    /** 
     * Constructor of the object. 
     */ 
    public Hello() {  
       super();  
       System.out.println("new Hello");  
    }  
    /** 
     * Destruction of the servlet. <br> 
     */ 
    public void destroy() {  
       super.destroy(); // Just puts "destroy" string in log  
       // Put your code here  
       System.out.println("destroy");  
    }  
    /** 
     * The doGet method of the servlet. <br> 
     * This method is called when a form has its tag value method equals to get. 
     * @param request the request send by the client to the server 
     * @param response the response send by the server to the client 
     * @throws ServletException if an error occurred 
     * @throws IOException if an error occurred 
     */ 
    public void doGet(HttpServletRequest request, HttpServletResponse response)  
           throws ServletException, IOException {         
       String text1 = request.getParameter("text1");  
            String str = text1;  
            response.sendRedirect("result.jsp?text1=" + text1);     
}  
    /** 
     * The doPost method of the servlet. <br> 
     * This method is called when a form has its tag value method equals to post. 
     * @param request the request send by the client to the server 
     * @param response the response send by the server to the client 
     * @throws ServletException if an error occurred 
     * @throws IOException if an error occurred 
     */ 
    public void doPost(HttpServletRequest request, HttpServletResponse response)  
           throws ServletException, IOException {  
           doGet(request,response);  
    }  
    /** 
     * Initialization of the servlet. <br> 
     * @throws ServletException if an error occure 
     */ 
    public void init() throws ServletException {  
       // Put your code here  
        System.out.println("init");  
    }  

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class Hello extends HttpServlet {
    /**
     * Constructor of the object.
     */
    public Hello() {
       super();
       System.out.println("new Hello");
    }
    /**
     * Destruction of the servlet. <br>
     */
    public void destroy() {
       super.destroy(); // Just puts "destroy" string in log
       // Put your code here
       System.out.println("destroy");
    }
    /**
     * The doGet method of the servlet. <br>
     * This method is called when a form has its tag value method equals to get.
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doGet(HttpServletRequest request, HttpServletResponse response)
           throws ServletException, IOException {     
       String text1 = request.getParameter("text1");
      String str = text1;
      response.sendRedirect("result.jsp?text1=" + text1);  
}
    /**
     * The doPost method of the servlet. <br>
     * This method is called when a form has its tag value method equals to post.
     * @param request the request send by the client to the server
     * @param response the response send by the server to the client
     * @throws ServletException if an error occurred
     * @throws IOException if an error occurred
     */
    public void doPost(HttpServletRequest request, HttpServletResponse response)
           throws ServletException, IOException {
           doGet(request,response);
    }
    /**
     * Initialization of the servlet. <br>
     * @throws ServletException if an error occure
     */
    public void init() throws ServletException {
       // Put your code here
     System.out.println("init");
    }
}
 

 

index.jsp

view plaincopy to clipboardprint?
<%@ page language="java" pageEncoding="UTF-8"%> 
<html> 
<head> 
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    <title>hello</title> 
</head> 
<body> 
    <form action="myForm" method="post"> 
        <input type="text" name="text1" value="China"> 
        <input type="submit" value="submit  myForm"> 
    </form> 
</body> 
</html> 
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 <title>hello</title>
</head>
<body>
 <form action="myForm" method="post">
  <input type="text" name="text1" value="China">
  <input type="submit" value="submit  myForm">
 </form>
</body>
</html>
 


 

result.jsp

view plaincopy to clipboardprint?
<%@ page language="java" pageEncoding="UTF-8"%> 
<html> 
<head> 
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    <title>result</title> 
</head> 
<body> 
    hello: <%= request.getParameter("text1") %> 
</body> 
</html> 
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 <title>result</title>
</head>
<body>
 hello: <%= request.getParameter("text1") %>
</body>
</html>
 

 

web.xml

view plaincopy to clipboardprint?
<?xml version="1.0" encoding="utf-8"?> 
<web-app version="2.4" 
    xmlns="http://java.sun.com/xml/ns/j2ee
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee  
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> 
  <servlet> 
    <servlet-name>hello</servlet-name> 
    <servlet-class>Hello</servlet-class> 
  </servlet> 
  <servlet-mapping> 
    <servlet-name>hello</servlet-name> 
    <url-pattern>/myForm</url-pattern> 
  </servlet-mapping> 
  <welcome-file-list> 
    <welcome-file>index.jsp</welcome-file> 
  </welcome-file-list> 
</web-app> 

 

 

分享到:
评论

相关推荐

    最简单Jsp-Servlet的MVC架构例子,适合初学者

    5. **lib01.sql**:这可能是一个SQL脚本文件,用于初始化数据库结构或填充测试数据。在学习过程中,运行这个脚本可以帮助你设置好数据库环境,以便于理解JSP-Servlet应用如何与数据库交互。 6. **Lib01**:这个...

    jsp-servlet-javabean留言本.rar_javabean_jsp_servlet jsp_三层架构_留言本

    标题"jsp-servlet-javabean留言本.rar_javabean_jsp_servlet jsp_三层架构_留言本"表明这是一个基于JSP、Servlet和JavaBean技术实现的在线留言本系统。其中,"jsp-servlet-javabean"暗示了这个系统采用了经典的Web...

    javaBean-servlet-jsp开发的通讯录

    在Java Web开发中,"javaBean-servlet-jsp"是一个常见的技术栈,用于构建基于Model-View-Controller(MVC)架构的应用程序。这个通讯录项目就是使用这些技术实现的一个实例,对于初学者来说,它是了解和学习这一技术...

    java-servlethello例子

    在这个简单的例子中,当用户通过GET请求访问Servlet时,Servlet会响应一个"Hello, World!"消息。 接下来,我们需要在Servlet容器(如Tomcat)的配置文件(如`web.xml`)中声明这个Servlet: ```xml &lt;web-app&gt; ...

    一个简单的JSP+Servlet图片上传例子

    这个“一个简单的JSP+Servlet图片上传例子”是一个基础教程,旨在帮助初学者理解如何通过这两种技术实现用户界面与服务器端的交互,特别是处理文件上传的功能。 首先,JSP是Java的一种视图技术,它允许开发者在HTML...

    jsp/servlet学习例子(完整项目带数据库)

    jsp/servlet学习例子(完整项目带数据库)

    jsp servlet 上传例子 基于 jspsmartupload

    `jspsmartupload` 是一个基于Java的开源项目,专门设计用于在`JSP`页面上处理文件上传。它提供了方便的API,能够处理多文件上传、限制文件大小、设置允许的文件类型等需求,使得在`JSP`中实现文件上传变得简单易行。...

    jsp+servlet+bean+mysql例子

    综上所述,"jsp+servlet+bean+mysql"的例子为初学者提供了一个完整的Java Web应用程序模型。通过学习和实践这个例子,开发者可以理解Web应用程序的各个组件如何协同工作,以及如何利用这些技术构建动态、数据驱动的...

    JSP+Servlet+JavaBean实例(MVC)

    这是一个以JSP、servlet、JavaBean实现MVC三层架构的简单例子,使用XML作为数据库连接的配置文件。 使用环境:eclipse_3.2、myeclipse_5.1、jdk_6.0、tomcat_5.5、sql server 2005 &lt;br&gt;----------------------...

    JSP+Servlet例子

    **JSP+Servlet例子详解** 本项目是一个基于JSP(JavaServer Pages)和Servlet技术构建的小型Web应用程序,主要用于教学目的,特别适合JSP和Servlet的初学者进行学习和实践。这个工程涵盖了基本的Web开发功能,如...

    jsp_servlet登录注册例子

    这个"jsp_servlet登录注册例子"是一个基础的Web应用程序开发案例,展示了如何利用JSP和Servlet协同工作实现用户登录和注册功能。通过这个例子,学习者可以理解JSP与Servlet的角色分工,以及如何与数据库进行交互。...

    jsp+servlet+javabean登录小例子

    本项目“jsp+servlet+javabean登录小例子”旨在通过一个简单的登录功能,帮助初学者理解这三者如何协同工作。 首先,`JSP(JavaServer Pages)`是一种动态网页技术,它允许开发者在HTML页面中嵌入Java代码,以实现...

    JSP-SERVLET

    下面给出一个简单的JSP示例,展示如何在JSP页面中嵌入Java代码: ```jsp &lt;title&gt;Hello, World JSP Example &lt;h2&gt;Hello, World! The current time in milliseconds is () %&gt; ``` 在这个例子中,`() %&gt;`是一段...

    servlet与jsp例子

    JSP在首次被请求时会被服务器转换为一个Servlet,然后编译并执行。这样做的好处是提高了开发效率,因为开发者可以专注于界面设计而不必关心底层的HTTP处理。 在这个例子中,项目可能包含以下组件: 1. **Servlets*...

    最简单 Servlet例子

    "最简单Servlet例子"是一个基础的入门教程,帮助开发者理解Servlet和`HttpServlet`的工作原理。通过创建一个简单的Servlet,我们可以学习如何处理HTTP请求,发送响应,并理解Servlet生命周期的关键步骤。这个例子为...

    servlet完成的JSP小例子-书城

    在这个“servlet完成的JSP小例子-书城”项目中,我们将会看到如何结合JSP和Servlet来构建一个简单的在线书城系统。Servlet主要负责处理用户请求,如登录、搜索书籍、添加到购物车等操作,而JSP则用于展示结果和交互...

    一个小的jsp和servlet的例子

    在这个"ownHome"例子中,可能包含一个简单的JSP页面(如"index.jsp")和一个或多个Servlet(如"OwnHomeServlet")。JSP页面可能包含用户界面元素,如表单,而Servlet则负责处理这些表单提交的请求。 **5. JSP页面...

    原理讲解-ServletInputStream.readLine(byte[] b, int off, int len) 方法

    在描述的场景中,我们看到一个文件上传的例子,涉及到两个 JSP 页面:`inputtest.jsp` 和 `accept.jsp`。`inputtest.jsp` 创建了一个表单,用户可以选择文件进行上传,然后提交到 `accept.jsp` 处理。`accept.jsp` ...

    MVC三层架构-Jsp+Servlet+Javabean

    例如,一个用户管理功能可能需要一个用户列表,可以将用户对象封装进一个ArrayList,然后在Servlet中处理这个列表,最后在JSP中遍历并展示出来。 **五、总结** MVC模式通过分离关注点,使得Web应用的开发更加清晰...

    jsp+servlet小例子增删查改

    【标题】"jsp+servlet小例子增删查改"是一个非常适合初学者的教程,它涵盖了在Web开发中常用的两种技术——JavaServer Pages (JSP) 和Servlet,用于实现对数据库中的数据进行基本的CRUD(Create、Read、Update、...

Global site tag (gtag.js) - Google Analytics