BaseAction
package util;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
/**
* 本类用于做struts2.0的通用控制器,只要你写的Action类继承这个类,就可以很轻易地得到Servlet中的Api
* @author 够潮
*
*/
@SuppressWarnings({ "unchecked", "serial" })
public class BaseAction extends ActionSupport {
/**
* 获取Response,并设置默认编码 如 text/json/javascript "utf-8"
* @return
*/
public HttpServletResponse getResponse(){
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/json/javascript;utf-8");
return response;
}
/**
* 获取session
* @return
*/
public Map getSession(){
/**
* 获取Action上下文
*/
ActionContext ac = ActionContext.getContext();
Map map = ac.getSession();
return map;
}
/**
* 获取Application
* @return
*/
public Map getApplication(){
/**
* 获取Action上下文
*/
ActionContext ac = ActionContext.getContext();
Map map = ac.getApplication();
return map;
}
/**
* 获取request
* @return
*/
public HttpServletRequest getRequest(){
HttpServletRequest request = ServletActionContext.getRequest();
return request;
}
}
GetServletApiActionDemo
package util;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* 该类继承BaseAction,测试是否很轻松获取Servlet中的Api
* @author 够潮
*
*/
public class GetServletApiActionDemo extends BaseAction {
/**
* 版本号
*/
private static final long serialVersionUID = 1L;
@SuppressWarnings("unchecked")
public String login(){
/**
* 获取response
*/
@SuppressWarnings("unused")
HttpServletResponse response = this.getResponse();
/**
* 获取resquest
*/
HttpServletRequest request = this.getRequest();
/**
* 获取session
*/
Map map = this.getSession();
/**
* 获取application
*/
@SuppressWarnings("unused")
Map appMap = this.getApplication();
/**
* 获取session中的数据
*/
System.out.println("user "+map.get("user"));
/**
* 用传统的request,接受前台的数据
*/
System.out.println("userName: "+request.getParameter("userName"));
System.out.println("password: " +request.getParameter("password"));
System.out.println("测试成功");
return "success";
}
}
测试页面:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<%
session.setAttribute("user","gouchao");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>提取servletApi</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<center>
<h2><br></h2><h2>提取servletApi</h2>
<form action="servletApiActionDemo!login.action">
userName:<input type="text" name="userName"><br>
password:<input type="password" name="password"><br>
<input type="submit" >
</form>
</center>
</body>
</html>
index.jsp
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
</head>
<body>
恭喜你!搭建环境成功
</body>
</html>
配置文件:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="admin" namespace="/" extends="struts-default">
<!-- GetServletApiActionDemo -->
<action name="servletApiActionDemo" class="util.GetServletApiActionDemo">
<result name="success">/index.jsp</result>
</action>
</package>
</struts>
效果:
分享到:
相关推荐
【Struts2.0框架详解】 Struts2.0是Java Web开发中广泛使用的MVC(Model-View-Controller)框架,它极大地简化了企业级应用程序的开发过程。本项目"网络公告系统"就是基于Struts2.0构建的,旨在提供一个用于发布和...
该框架的出现极大地简化了Java Web开发,通过整合其他开源组件,如OGNL(Object-Graph Navigation Language)表达式语言、Freemarker和Velocity模板引擎等,实现了控制器、视图和模型的分离,使得业务逻辑与表现层...
DOCTYPE 声明指定了 Struts 2 配置文件遵循的 DTD(Document Type Definition),在这个例子中是 Struts 2.0 的 DTD。这确保了解析器理解配置文件的结构和元素。 2. **<struts> 根元素**: `<struts>` 是整个配置...
2. **Web 模块增强**:Spring 2.0 在 MVC 方面做了大量改进,例如支持更丰富的视图解析器、支持基于注解的控制器等。 3. **数据库访问增强**:Spring 2.0 对数据库访问支持进行了优化,引入了新的 JDBC 模板类,...
首先,我们来看《Struts2.0中文教程》.chm,这是一份详尽的中文参考指南,它涵盖了Struts2的基础到高级特性。教程可能会讲解以下几个方面: 1. **基础知识**:介绍Struts2的基本概念,如Action、Result、...
Struts框架的体系结构是基于MVC设计模式的,其核心组件包括模型(Model)、视图(View)和控制器(Controller)。 1. **模型(Model)**:代表应用程序的核心业务逻辑和数据。在Struts中,模型通常由一系列的`ActionForm` ...
- **MVC设计模式**: Struts 遵循 MVC 模式,将应用程序分为三个主要部分:模型(Model)、视图(View) 和控制器(Controller)。 - **模型(Model)**: 代表应用程序的数据和业务逻辑。 - **视图(View)**: 显示模型中的...
DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="com" extends="struts-default"> ...
- **控制器类**:Struts 2中的控制器类是一个普通的POJO对象,这意味着它可以被任何Java类所继承并实现相应的业务逻辑。 - **标签库使用**:要在JSP页面中使用Struts 2提供的标签库,需要使用`taglib`编译指令导入...
1. **ActionServlet**:作为整个Web应用的控制器,负责接收用户的请求,并决定调用哪个Action来处理这些请求。ActionServlet继承自 HttpServlet 类,重写了 doService 方法以处理请求。 2. **Action**:每个Action...
13.11.1. 对控制器的支持: ControllerClassNameHandlerMapping 13.11.2. 对模型的支持:ModelMap (ModelAndView) 13.11.3. 对视图的支持: RequestToViewNameTranslator 13.12. 其它资源 14. 集成视图技术 ...
在该项目中,Servlet充当控制器的角色,接收JSP提交的请求,处理业务逻辑,然后将结果传递回JSP进行展示。Servlet通过HttpServlet类进行扩展,实现doGet和doPost方法来处理GET和POST请求。 3. **JSTL (JavaServer ...
此外,系统构建于Spring2.0、Struts1.2和Hibernate3.1框架之上,数据库为MySQL5.0,采用utf-8编码。 **二、系统架构** 系统主要由四层构成:视图层控制器、持久化层DAO、业务层以及值对象(VO)。视图层负责用户...
- com.aptech.vo:值对象,用于控制器和业务层之间的数据传递。 - com.aptech.test:测试相关代码。 - default.query.hbm.xml:命名查询的定义文件。 **功能详解** 1. **创建请假条**:用户需输入请假天数和原因,...
- **com.aptech.struts.action**:Action包,处理前端请求,实现了MVC模式中的控制器部分。 - **com.aptech.tag**:自定义标签和函数,增强了页面表现力和可扩展性。 - **com.aptech.utils**:实用工具类集合,提供...
- **Struts**:一个基于MVC设计模式的Web框架,主要用于控制层的实现。 - **Hibernate**:一个对象关系映射(ORM)工具,简化了数据库操作,使开发者能够更加关注业务逻辑而非繁琐的SQL语句编写。 #### 二、案例介绍 ...
- 开发者可以使用 `<@include>` 标签在页面中插入动态内容,或者通过 CSS 类选择器控制哪些部分不受装饰器影响。 总结,`sitemesh-2.3.zip` 文件提供了完整的 Sitemesh 2.3 版本,包含源码、文档和构建工具,是...