- 浏览: 1500810 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (798)
- struts2 (42)
- servlet (20)
- quartz (4)
- jquery & ajax (24)
- tomcat (5)
- javascript (15)
- struts1 (8)
- 搜索关键字及链接 (3)
- fckeditor (3)
- Apache (5)
- spring (22)
- linux (3)
- 企业应用 (8)
- 综合应用 (13)
- 服务器 (2)
- 数据库 (85)
- 性能调优 (21)
- 网络应用 (15)
- 缓存技术 (8)
- 设计模式 (39)
- 面试题 (7)
- 程序人生&前辈程序员 (29)
- java基础 (59)
- hibernate (75)
- log4j (4)
- http (11)
- 架构设计 (28)
- 网页设计 (12)
- java邮件 (4)
- 相关工具 (11)
- ognl (7)
- 工作笔记 (18)
- 知识面扩展 (12)
- oracle异常 (1)
- 正则表达式 (2)
- java异常 (5)
- 项目实践&管理 (1)
- 专业术语 (11)
- 网站参考 (1)
- 论坛话题 (2)
- web应用 (11)
- cxf&webservice (22)
- freemarker (3)
- 开源项目 (9)
- eos (1)
- ibatis (6)
- 自定义标签 (3)
- jsp (3)
- 内部非公开文档(注意:保存为草稿) (0)
- 国内外知名企业 (2)
- 网店 (3)
- 分页 (1)
- 消费者习惯 (2)
- 每日关注 (1)
- 商业信息 (18)
- 关注商业网站 (1)
- 生活常识 (3)
- 新闻 (2)
- xml&JSON (5)
- solaris (1)
- apache.common (3)
- BLOB/CLOB (1)
- lucene (2)
- JMS (14)
- 社会进程 (8)
- SSH扩展 (2)
- 消费心理 (1)
- 珠三角 (1)
- 设计文档 (1)
- XWork&webwork (1)
- 软件工程 (3)
- 数据库及链接 (1)
- RMI (2)
- 国内外知名企业&人物 (1)
最新评论
-
司c马:
简介易懂、
OutputStream和InputStream的区别 -
在世界的中心呼喚愛:
解决我的问题
Java获取客户端的真实IP地址 -
bo_hai:
都是些基本的概念呀!
SSO -
tian_4238:
哥们,你也是搞水利这块的吧。
巧用SQLQuery中的addScalar -
loveEVERYday:
java.util.Date、java.sql.Date、java.sql.Time、java.sql.Timestamp小结
以下的简单 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>
发表评论
-
ServletContext接口
2011-08-03 19:57 13451. 获取web应用(tomcat的Context ... -
ServletConfig接口
2011-08-03 19:41 13671. ServletConfig接口用于描述Ser ... -
HttpServletResponse
2011-08-03 19:31 18301. 控制消息头 add ... -
基于AOP设计思想的拦截器(Interceptor)与传统拦截器(Filter)的区别
2011-07-11 11:46 9407现在AOP的设计开发理念在软件开发中用的越来越广泛,在我们开发 ... -
HttpSessionListener用法
2010-12-02 20:46 1506继上次说到Listener的功效,这里就不得不说说另外一个接口 ... -
过滤器(filter)在web 中的应用(二)
2010-06-25 16:42 1119Filters是在请求资源(Servl ... -
web.xml 中的listener、 filter、servlet 加载顺序及其详解(2)
2010-06-25 13:56 163122、配置Struts <dis ... -
web.xml 中的listener、 filter、servlet 加载顺序及其详解(1)
2010-06-25 13:46 2859在项目中总会遇到一 ... -
web.xml中context-param,listener,filter,servlet加载顺序
2010-06-25 13:35 1895不同类别加载顺序:先 context-param 然后 lis ... -
过滤器(filter)在web 中的应用(一)
2010-06-22 17:38 2085过滤器(Filter)在Web开发中的应用: Filter是 ... -
javax.servlet基本类和接口
2010-06-19 21:25 2141基本类和接口一、javax.servlet.Servlet ... -
Session机制详解(jsp-servlet 技术)
2010-06-17 20:51 1489虽然session机制在web应用程序中被采用已经很长时间 ... -
servlet中配置文件web.xml中的参数context-param和init-param区
2010-06-17 09:56 1851web.xml里面可以定义两种参数:(1)applicatio ... -
优化Servlet配置为web.xml瘦身
2010-06-17 09:46 1743本文介绍优化Servlet配置为web.xml瘦身,web.x ... -
Java中用Servlet Listener实现定时监听
2010-06-12 13:50 1537分两步走: (1)实现 javax.servlet. ... -
戏说java web开发中的listener和filter
2010-06-12 11:26 1602今天在公司看到有同事在写filter,晚上一个人在家无聊,就想 ... -
谈谈Listener Servlet的应用
2010-06-12 10:53 1275... -
web中的listener简介
2010-06-12 10:42 1333... -
利用HttpSessionListener实现网站在线人数统计功能
2010-06-12 10:17 2062在网站中经常需要进行在线人数的统计。过去的一般做法是结合登录 ...
相关推荐
5. **lib01.sql**:这可能是一个SQL脚本文件,用于初始化数据库结构或填充测试数据。在学习过程中,运行这个脚本可以帮助你设置好数据库环境,以便于理解JSP-Servlet应用如何与数据库交互。 6. **Lib01**:这个...
标题"jsp-servlet-javabean留言本.rar_javabean_jsp_servlet jsp_三层架构_留言本"表明这是一个基于JSP、Servlet和JavaBean技术实现的在线留言本系统。其中,"jsp-servlet-javabean"暗示了这个系统采用了经典的Web...
在Java Web开发中,"javaBean-servlet-jsp"是一个常见的技术栈,用于构建基于Model-View-Controller(MVC)架构的应用程序。这个通讯录项目就是使用这些技术实现的一个实例,对于初学者来说,它是了解和学习这一技术...
在这个简单的例子中,当用户通过GET请求访问Servlet时,Servlet会响应一个"Hello, World!"消息。 接下来,我们需要在Servlet容器(如Tomcat)的配置文件(如`web.xml`)中声明这个Servlet: ```xml <web-app> ...
这个“一个简单的JSP+Servlet图片上传例子”是一个基础教程,旨在帮助初学者理解如何通过这两种技术实现用户界面与服务器端的交互,特别是处理文件上传的功能。 首先,JSP是Java的一种视图技术,它允许开发者在HTML...
jsp/servlet学习例子(完整项目带数据库)
`jspsmartupload` 是一个基于Java的开源项目,专门设计用于在`JSP`页面上处理文件上传。它提供了方便的API,能够处理多文件上传、限制文件大小、设置允许的文件类型等需求,使得在`JSP`中实现文件上传变得简单易行。...
综上所述,"jsp+servlet+bean+mysql"的例子为初学者提供了一个完整的Java Web应用程序模型。通过学习和实践这个例子,开发者可以理解Web应用程序的各个组件如何协同工作,以及如何利用这些技术构建动态、数据驱动的...
这是一个以JSP、servlet、JavaBean实现MVC三层架构的简单例子,使用XML作为数据库连接的配置文件。 使用环境:eclipse_3.2、myeclipse_5.1、jdk_6.0、tomcat_5.5、sql server 2005 <br>----------------------...
**JSP+Servlet例子详解** 本项目是一个基于JSP(JavaServer Pages)和Servlet技术构建的小型Web应用程序,主要用于教学目的,特别适合JSP和Servlet的初学者进行学习和实践。这个工程涵盖了基本的Web开发功能,如...
这个"jsp_servlet登录注册例子"是一个基础的Web应用程序开发案例,展示了如何利用JSP和Servlet协同工作实现用户登录和注册功能。通过这个例子,学习者可以理解JSP与Servlet的角色分工,以及如何与数据库进行交互。...
本项目“jsp+servlet+javabean登录小例子”旨在通过一个简单的登录功能,帮助初学者理解这三者如何协同工作。 首先,`JSP(JavaServer Pages)`是一种动态网页技术,它允许开发者在HTML页面中嵌入Java代码,以实现...
下面给出一个简单的JSP示例,展示如何在JSP页面中嵌入Java代码: ```jsp <title>Hello, World JSP Example <h2>Hello, World! The current time in milliseconds is () %> ``` 在这个例子中,`() %>`是一段...
JSP在首次被请求时会被服务器转换为一个Servlet,然后编译并执行。这样做的好处是提高了开发效率,因为开发者可以专注于界面设计而不必关心底层的HTTP处理。 在这个例子中,项目可能包含以下组件: 1. **Servlets*...
"最简单Servlet例子"是一个基础的入门教程,帮助开发者理解Servlet和`HttpServlet`的工作原理。通过创建一个简单的Servlet,我们可以学习如何处理HTTP请求,发送响应,并理解Servlet生命周期的关键步骤。这个例子为...
在这个“servlet完成的JSP小例子-书城”项目中,我们将会看到如何结合JSP和Servlet来构建一个简单的在线书城系统。Servlet主要负责处理用户请求,如登录、搜索书籍、添加到购物车等操作,而JSP则用于展示结果和交互...
在这个"ownHome"例子中,可能包含一个简单的JSP页面(如"index.jsp")和一个或多个Servlet(如"OwnHomeServlet")。JSP页面可能包含用户界面元素,如表单,而Servlet则负责处理这些表单提交的请求。 **5. JSP页面...
在描述的场景中,我们看到一个文件上传的例子,涉及到两个 JSP 页面:`inputtest.jsp` 和 `accept.jsp`。`inputtest.jsp` 创建了一个表单,用户可以选择文件进行上传,然后提交到 `accept.jsp` 处理。`accept.jsp` ...
例如,一个用户管理功能可能需要一个用户列表,可以将用户对象封装进一个ArrayList,然后在Servlet中处理这个列表,最后在JSP中遍历并展示出来。 **五、总结** MVC模式通过分离关注点,使得Web应用的开发更加清晰...
【标题】"jsp+servlet小例子增删查改"是一个非常适合初学者的教程,它涵盖了在Web开发中常用的两种技术——JavaServer Pages (JSP) 和Servlet,用于实现对数据库中的数据进行基本的CRUD(Create、Read、Update、...