博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
尚硅谷公开课--struts2--6--result
阅读量:6158 次
发布时间:2019-06-21

本文共 814 字,大约阅读时间需要 2 分钟。

hot3.png

result ,即是struts.xml文件中action的一个子节点,每个action可以有多个result子节点,代表了一种action中execute方法的一种可能的返回值

共两个属性: name,type

type表示结果的响应类型,在struts-default 包的 result-types 节点的 name 属性中定义,常用的有:

dispatcher(默认的): 转发. 同 Servlet 中的转发.

 redirect: 重定向

redirectAction: 重定向到一个 Action

        注意: 通过 redirect 的响应类型也可以便捷的实现 redirectAction 的功能!
        
    <result name="index" type="redirectAction">
        <param name="actionName">testAction</param>
        <param name="namespace">/atguigu</param>
    </result>
    
    或者
    
    <result name="index" type="redirect">/atguigu/testAction.do</result>
        

chain: 转发到一个 Action

        注意: 不能通过 type=dispatcher 的方式转发到一个 Action
        
         只能是:
         
    <result name="test" type="chain">
        <param name="actionName">testAction</param>
        <param name="namespace">/atguigu</param>
    </result>
    
    不能是:
    
    <result name="test">/atguigu/testAction.do</result>

转载于:https://my.oschina.net/iamhere/blog/495611

你可能感兴趣的文章
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>