zoukankan      html  css  js  c++  java
  • struts2的添加新的action以及重定向到另外的action访问

    1、Action配置的各项默认值
    (1)、如果没有为action指定class,默认是ActionSupport。
    (2)、如果没有为action指定method,默认执行action中的execute()方法。
    (3)、如果没有为action指定result,默认值为success。
       
    2、result配置的各种试图转发类型
    <result type="">...</result>
    其中type的常用类型有:
    dispatcher(默认值) ->转发
    redirect ->重定向
    redirectAction ->重定向的action在别的命名空间下
    如:<result type="redirectAction">
              <param name="actionName">helloworld</param>
              <param name="nameSpace">/test</param>
          </result>
    plainText ->显示原始文件内容
    如:<result type="">
              <param name="location">/xxx.jsp</param>
              <!--指定读取文件的编码-->
              <param name="charSet">UTF-8</param>
          </result>
    注意:在result中还可以使用${属性名}表达式访问action中的属性,表达式里的属性名对应action中的属性名
    如:<result name="success" type="redirect">/index.jsp?username=${username}</result>
     
    <package name="jim" namespace="/test" extends="struts-default">
    <action name="helloworld" class="com.jim.action.HelloWorldAction" >
    <param name="savePath">/images</param>
    <result name="success">/WEB-INF/page/hello.jsp</result>
    </action>
    </package>
  • 相关阅读:
    AlertDialog弹出退出对话框和图片对话框
    android 真机配置
    Intent传递对象的两种方法(Serializable,Parcelable)
    COM入门简介
    WinRT简介
    什么是Windows服务
    C++更改控制台输出颜色
    在线编译器
    软件制作:QQGamePlug Lianliankan Plug
    网络安全:WinRAR命令行压缩
  • 原文地址:https://www.cnblogs.com/boonya/p/2367521.html
Copyright © 2011-2022 走看看