我是 Struts2 的新手,但到目前为止,我在使用 API 方面取得了不错的进展。然而,我被困在我需要摆脱的东西上。我正在使用带有 Spring 集成的 Struts2。我正在编写带有注释的 Action 类,就像你们中的许多人一样,我喜欢注释。
我的要求是 URL 将具有以下性质:
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中使用相同的东西时,我得到了错误。我的动作类如下:
@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>