一、访问或添加Application、session、request属性

《一》方式一

HelloWorldAction类中添加如下代码

//此方法适用于仅对Application、session、request对象添加属性值
public String execute(){
//访问或添加Application、session、request属性
ActionContext act=ActionContext.getContext();
act.getApplication().put("app", "application范围(应用范围)");
act.getSession().put("ses", "session范围");
act.put("req", "request范围");
return "success";
}

Struts.xml文件内容:(使用了通配符的方式)

<action name="helloworld_*" class="test.struts2.HelloWorldAction" method="{1}" >

<result name="success">/WEB-INF/page/hello.jsp</result>

</action>

Hello.jsp页面内容:

${applicationScope.app}</br>

${sessionScope.ses}</br>

${requestScope.req}</br>

访问连接可以为:

http://localhost:8080/struts2/test/helloworld_execute.do(注意:do,xxx为自定义后缀,这样访问时必须加上)

http://localhost:8080/struts2/test/helloworld_execute.xxx

http://localhost:8080/struts2/test/helloworld_execute.action

http://localhost:8080/struts2/test/helloworld_execute为无效链接

http://localhost:8080/struts2/test/helloworld为无效链接

http://localhost:8080/struts2/test/helloworld.action也可以访问

http://localhost:8080/struts2/test/helloworld.do也可以访问

结论:

在使用通配符的方式下(name="helloworld_*",method="{1}")如果地址栏中地址helloworld后没有直接跟方法名execute或addUI等,那么默认执行execute方法,因为在配置文件中  <constant name="struts.action.extension" value="do,action,xxx,aiai"/>定义了几个后缀,所以访问连接必须添加其中之一方有效。以上五个有效连接访问结果一样。

结果为:

application范围(应用范围)

session范围

request范围

《二》方式二

此方式适用于需要获取绝对路径等重要信息时使用

此时在Action类HelloWorldAction类中添加如下代码,其他地方不改动

    public String rsa()
{
HttpServletRequest request=ServletActionContext.getRequest();
ServletContext servletContext=ServletActionContext.getServletContext();
request.setAttribute("req", "请求方位属性");
request.getSession().setAttribute("ses", "会话范围属性");
servletContext.setAttribute("app", "应用范围属性");
return "success";
}

访问地址:

http://localhost:8080/struts2/test/helloworld_execute!rsa.do

http://localhost:8080/struts2/test/helloworld!rsa.do

http://localhost:8080/struts2/test/helloworld_rsa.do

http://localhost:8080/struts2/test/helloworld_addUI!rsa.do

http://localhost:8080/struts2/test/helloworld_addUI!Rsa无效

http://localhost:8080/struts2/test/helloworld_rsa无效

结果为:

应用范围属性

会话范围属性

请求方位属性

补充:

public String execute(){
//访问或添加Application、session、request属性
ActionContext act=ActionContext.getContext();
act.getApplication().put("app", "application范围(应用范围)");
act.getSession().put("ses", "session范围");
act.put("req", "request范围");
act.put("names",Arrays.asList("幽林孤狼","心晴","幽林孤狼B组"));//新
return "success";
}

再\WebRoot\WEB-INF\lib目录下引入如下两个jar文件

在hello.jsp文件中添加:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"  %>

以及:

<c:forEach items="${names}" var="name">

${name}</BR>

</c:forEach>

访问结果为:

幽林孤狼

心晴

幽林孤狼B组

struts2中访问和添加Application、session以及request属性的更多相关文章

  1. Struts2中访问web元素的四种方式

    Struts2中访问web元素的四种方式如下: 通过ActionContext来访问Map类型的request.session.application对象. 通过实现RequestAware.Sess ...

  2. struts2中访问servlet API

    Struts2中的Action没有与任何Servlet API耦合,,但对于WEB应用的控制器而言,不访问Servlet API几乎是不可能的,例如需要跟踪HTTP Session状态等.Struts ...

  3. Struts2中 ValueStack、ActionContext、ServletContext、request、session等 表格解析

    变量 从ActionContext中获得 生命周期 用Ongl来读取值 使用ServletConfigInterceptor来注入 ActionContext类 静态方法ActionContext. ...

  4. struts2中的使用BaseAction获取Session

    package com.owen.ma; import java.util.Map; import org.apache.struts2.interceptor.RequestAware; impor ...

  5. Struts2中的ModelDriven机制及其运用、refreshModelBeforeResult属性解决的问题

    1.为什么需要ModelDriven? 所谓ModelDriven,意思是直接把实体类当成页面数据的收集对象.比如,有实体类User如下: package cn.com.leadfar.struts2 ...

  6. Struts2(八)访问Servlet API

    一.Struts2中的Servlet API 1.1.struts2的Action实现了MVC中C层的作用 针对请求用户显示不同的信息 登录后段保存用户信息 ----session 保存当前在线人数等 ...

  7. 关于struts2中的相对路径与绝对路径

    从昨天开始复习了struts2的课程,之所以重新走上java的道路,是觉得写了一年的go程序,并没有感觉到学习了什么,反而把java给忘得干干净净的.想想我的计划,年后就要换工作了,至于要换到什么方向 ...

  8. struts2访问或添加几个属性(request/session/application属性)

    https://blog.csdn.net/hebiao100/article/details/7385055 struts2添加request.session.application属性 第一种方法 ...

  9. struct2访问或添加request/session/application

    访问或添加request/session/application 1 通过ActionContext //这样放置 public String execute()  {     ActionConte ...

随机推荐

  1. Servlet中Service方法

    doGet方法只能处理Get方式提交的请求,doPost则可以处理Post方式提交的请求, 一种既可以处理Get方式又可以处理Post方式的提交的请求,它就是Service方法. service方法用 ...

  2. UVa 1453 - Squares 旋转卡壳求凸包直径

    旋转卡壳求凸包直径. 参考:http://www.cppblog.com/staryjy/archive/2010/09/25/101412.html #include <cstdio> ...

  3. CVS 文件自动移 tag 的 Python 脚本

    CVS 文件自动移 tag 的 Python 脚本 背景 工作中使用的版本管理工具是 CVS,在两次发布中,如果修改的文件比较少,会选择用移 Tag 的方式来生成一个新 Tag 发布.文件比较少的情况 ...

  4. Java解压上传zip或rar文件,并解压遍历文件中的html的路径

    1.本文只提供了一个功能的代码 public String addFreeMarker() throws Exception { HttpSession session = request.getSe ...

  5. 信号量及PV原语

    操作系统中进程互斥和同步的实现的一个最基本的方方是使用信号量和PV原语. 信号量S的物理意义:当S≥0的时候表示,某个资源可以使用的数量,当S<0的时候,其绝对值表示等待某个资源的进程数. 一般 ...

  6. 面试题_82_to_87_Date、Time 及 Calendar 的面试题

    82)在多线程环境下,SimpleDateFormat 是线程安全的吗?(答案)不是,非常不幸,DateFormat 的所有实现,包括 SimpleDateFormat 都不是线程安全的,因此你不应该 ...

  7. hdu4576 概率dp n^2的矩阵

    这个题目看网上好多题解都是直接O(n*m)卡过.我是这么做的. 对于m次操作,统计每个w的次数.然后对每个w做矩阵乘法. 这样直接做矩阵乘法是会TLE的. 又由于这里的矩阵很特殊,一次乘法可以降维成O ...

  8. HighChart图片本地导出

    Highchart第三方图表控件,导出默认是从官方地址导出,这样在无外网的条件下则导致导出失败,改进如下: 后台导出代码: public partial class HighChart : Syste ...

  9. 前端JS对后台传递的timestamp的转换

    后台传递的timestamp类型的数据的JSON: Date.prototype.format = function(format) { var o = { "M+" : this ...

  10. codeforces 333A - Secrets

    题意:保证不能正好配齐n,要求输出可以用的最大硬币数. 注意如果用到某种硬币,那么这种硬币就有无穷多个.所以11=3+3+3+3,12=9+9,13=3+3+3+3+3 #include<cst ...