Struts2 Action用于URL的正则表达式/通配符

时间:2013-02-28 21:24:32

标签: java struts2

我是Struts2的新手,但到目前为止,我已经使用API​​取得了不错的进展。但是,我陷入了一些我需要摆脱的问题。我正在使用Struts2与Spring集成。我正在编写带有注释的Action类,就像许多人一样,我喜欢注释。

我的要求是网址具有以下性质:

http://<DOMAIN>/program/program1.jspx
http://<DOMAIN>/program/program2.jspx
http://<DOMAIN>/program/program3.jspx

正如您所看到的,URL中存在某种模式,program1,program2和program3各不相同,其余都是静态的。在我的其他项目中,我很容易处理Spring MVC(我没有选择使用Spring MVC作为当前项目)的类似情况,如"/program/{program_name}.jspx"

但是当我在struts2中使用相同的时候,我得到了错误。我的Action类如下:

@Result(name="program", location="program", type="tiles")
public class ProgramAction extends ActionSupport {

   @Action("program/{programName}")
   public String getProgramPage() {
     // few more lines of code  
     return "program";      
  }
}

错误是

2013-02-28 15:46:35.591 WARN  [http-bio-8080-exec-3] CommonsLogger.java:60 
Could not find action or result
com.opensymphony.xwork2.config.ConfigurationException: There is no Action mapped for namespace / and action name program1.
at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:189) ~[xwork-core-2.2.1.jar:2.2.1]
at org.apache.struts2.impl.StrutsActionProxy.prepare(StrutsActionProxy.java:61) ~[struts2-core-2.2.1.jar:2.2.1]
at org.apache.struts2.impl.StrutsActionProxyFactory.createActionProxy(StrutsActionProxyFactory.java:39) ~[struts2-core-2.2.1.jar:2.2.1]
at com.opensymphony.xwork2.DefaultActionProxyFactory.createActionProxy(DefaultActionProxyFactory.java:58) ~[xwork-core-2.2.1.jar:2.2.1]
at org.apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.java:475) ~[struts2-core-2.2.1.jar:2.2.1]
....
....

我的struts.xml文件如下:

<struts>
<constant name="struts.convention.default.parent.package" value="default"/>
<constant name="struts.action.extension" value="jspx" />
<constant name="struts.mapper.alwaysSelectFullNamespace" value="false" />
<constant name="struts.enable.DynamicMethodInvocation" value="true" />

<package name="default" extends="struts-default, json-default, rest-default" namespace="/">       
    <result-types>
        <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult"/>
        <result-type name="json" class="org.apache.struts2.json.JSONResult"/>
    </result-types>
</package>
</struts>

2 个答案:

答案 0 :(得分:1)

您的操作名称中包含斜杠。默认情况下struts不喜欢这个来纠正添加:

<constant name="struts.enable.SlashesInActionNames" value="true"/>

答案 1 :(得分:0)

这是因为您在方法上定义了动作注释。在JSP中尝试<s:a namespace="/" action="program/program1" method="programPage" />