我想在我的申请中获得一些全球性的结果。在旧的XML配置中,它看起来像:
<global-results>
<result name="error" type="redirectAction">
<param name="actionName">index</param>
<param name="namespace">/</param>
</result>
</global-results>
但是当我使用约定插件时,XML中的全局结果似乎被忽略了,所以我如何使用约定插件实现它?我不希望所有的动作类扩展一个定义了全局结果的自定义类。我认为package-info.java
应该是我的朋友,但我可以定义与结果有关的所有内容@org.apache.struts2.convention.annotation.ResultPath
。
只是要明确:我不想避免struts.xml
配置 - 我只想要一些有效的全局转发,所以如果任何操作出错,我想将用户转发给中央错误页面。目前这不适用于我的配置。如果您在我的struts.xml
或我的操作中看到了问题,并且可以帮我修复它,那就完全可以了。
也许struts.xml
中的顺序很重要?这是我的struts.xml
:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.devMode" value="false" />
<constant name="struts.convention.result.path" value="/content/"/>
<constant name="struts.convention.default.parent.package" value="my-package"/>
<constant name="struts.convention.package.locators.disable" value="true"/>
<constant name="struts.convention.action.packages" value="..."/>
<constant name="struts.custom.i18n.resources" value="global" />
<constant name="struts.multipart.maxSize" value="10485760" />
<package name="my-package" extends="struts-default,json-default" namespace="/">
<result-types>
<result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult"/>
</result-types>
<interceptors>
<interceptor name="login" class="loginInterceptor" />
<interceptor name="pagetitle" class="pagetitleInterceptor"></interceptor>
<interceptor-stack name="secureStack">
...
</interceptor-stack>
<interceptor-stack name="insecureStack">
...
</interceptor-stack>
</interceptors>
<default-interceptor-ref name="secureStack" />
<global-results>
<result name="error" type="redirectAction">
<param name="actionName">index</param>
<param name="namespace">/</param>
</result>
</global-results>
</package>
</struts>
在我的行动中我有:
public class MyActionClass extends ActionSupport {
@Actions({ @Action(value = "my-action", results = { @Result(name = "success", type = "tiles", location = "my.location") }) })
public final String myAction() throws Exception {
return ERROR;
}
}
当然myAction
有更多功能 - 这只是为了说明。执行操作后,它会转发到my-action.jsp
而不使用切片,但我希望它转发到/index.action
。
答案 0 :(得分:1)
不幸的是,您无法使用约定插件在包上定义Result
或Results
注释。您必须在xml配置中定义全局结果,并且不会忽略它们,因为无论您使用哪个配置提供程序,都会定义运行时配置。解决方法是在基类上定义Result
或Results
。
答案 1 :(得分:1)
您正在包中定义global-result
。这些结果(全局)仅对它们所定义的包是全局的。因此,只有在同一个包中声明的actions
才能访问这些global-result
。你面前有两个选择:
在XML配置中如何做到这一点非常明显(你只需在同一个包中定义它们):
<package name="my-package" extends="struts-default,json-default" namespace="/">
<!-- This result is local to this action -->
<action name="someAction"class="com.example.SomeAction" method="execute">
<result name="someLocalResult">/localResult.jsp</result>
</action>
.
.
.
<global-results>
<!--This result is global **to the actions in my-package** -->
<result name="error" type="redirectAction">
<param name="actionName">index</param>
<param name="namespace">/</param>
</result>
</global-results>
</package>
因此,如果您使用约定插件仅将您的Java类标记为actions
,那么您没有为它们定义一个包(它们将属于默认包)。为此,您可以使用注释@ParentPackage
告诉框架此action
属于此包,并且可以使用它global-result
。
为了实现这一点,您的java类应该如下所示:
@ParentPackage(value="my-pacakge")
public class MyActionClass extends ActionSupport {
@Actions({ @Action(value = "my-action", results = { @Result(name = "success", type = "tiles", location = "my.location") }) })
public final String myAction() throws Exception {
return ERROR;
}
}
您的struts.xml
将保持不变:
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<package name="my-package" extends="struts-default,json-default" namespace="/">
.
.
.
<global-results>
<result name="error" type="redirectAction">
<param name="actionName">index</param>
<param name="namespace">/</param>
</result>
</global-results>
</package>
</struts>
摆脱设置每个操作@ParentPackage
的类似替代解决方案是将操作默认pacakge设置为您喜欢的包(此处,包含global-result
的包)。只需将此常量元素添加到struts.xml(<struts>
内),您就可以了:
<constant name="struts.convention.default.parent.package" value="my-package"/>
以下是有关@ParentPackage
的有用链接:
答案 2 :(得分:0)
关于:Convention Plugin Documentation:
从2.1.7起,使用注释定义的全局结果(在类级别定义)将被继承。
所以这听起来对我来说,因为我可以举一个基本动作,我的所有行动都延伸,然后我有一个全局结果。另一个想法是package-info.java。
同样的文件说:
Convention插件允许操作类为操作定义不同的结果。结果分为两类,全球和地方。 在操作类中定义的所有操作之间共享全局结果。这些结果被定义为动作类的注释。本地结果仅适用于定义它们的操作方法。以下是不同类型的结果注释的示例。
所以我认为它们与标准本地结果和全局结果的概念不同。
标准支柱:
我认为使用Convention,Global是(2.)而Local是(3.)它们都是Action的本地,但是global可以从每个方法返回,而local只能从定义它的特定方法返回。