在 struts2 中使用扩展拦截器不适用于操作参数
我有一个带有拦截器配置的默认包,并且我将该包扩展为另一个包并调用相同的拦截器
<action name="availability**">
<param name="subTab">availability</param>
<interceptor-ref name="tabStack"/>
<result>/WEB-INF/jsp/index.jsp?include=visibilit/availability.jsp</result>
</action>
问题是在我的拦截器代码中没有读取参数:
Map params = invocation.getInvocationContext().getParameters();
subTab = params.get("subTab").toString(); //NULL exception
知道如何将参数传递给扩展拦截器?
谢谢!
I have a default package w/ an interceptor configure, and i'm extending that package into another one and calling the same interceptor
<action name="availability**">
<param name="subTab">availability</param>
<interceptor-ref name="tabStack"/>
<result>/WEB-INF/jsp/index.jsp?include=visibilit/availability.jsp</result>
</action>
The problem is that the param is not being read inside my interceptor code:
Map params = invocation.getInvocationContext().getParameters();
subTab = params.get("subTab").toString(); //NULL exception
Any idea how i can pass parameters to extended interceptors?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您调用的 getParameters() 方法仅返回 HTTP 请求中的参数。 struts.xml 中设置的参数称为“静态参数”,您可以像这样访问它们(在拦截()方法中):
来源:StaticParametersInterceptor.java
The getParameters() method which you are calling only returns the parameters from the HTTP request. The parameters set in struts.xml with are called "static parameters", and you can access them (within the intercept() method) like this:
Source: StaticParametersInterceptor.java
你能尝试一下这个语法吗?
我不确定,但也许这会起作用
Can you try this syntax
I am not sure but maybe this will work