Passing parameters to action through ModelDriven in Struts 2(通过 Struts 2 中的 ModelDriven 将参数传递给动作)
问题描述
该问题与 ModelDriven
和 Struts 2.3.16 有关.由于 params
拦截器的行为更改为访问传递给操作的参数,因此需要配置 acceptParamNames
列表以与 ModelDriven
操作一起使用.如果 acceptParamNames
列表为空,则默认通过默认模式接受参数.假设我们有一个
The issue is related to the ModelDriven
and Struts 2.3.16. Since the behavior of the params
interceptor changed to access parameters passed to the action requires to configure acceptParamNames
list to use with ModelDriven
action. If acceptParamNames
list is empty, it works by default accepting params via default pattern. Suppose we have a
ModelDriven
操作:
ModelDriven
action:
@Namespace("/modelDriven")
public class ModelDrivenAction extends ActionSupport implements ModelDriven {
private Gangster model = new Gangster();
private String name; //getter and setter
public Object getModel() {
return model;
}
@Actions({
@Action(value="modelDriven", results=@Result(location = "/modelDriven/modelDriven.jsp")),
@Action(value="modelDrivenResult", results=@Result(location = "/modelDriven/modelDrivenResult.jsp"))
})
public String execute() throws Exception {
model.setName(name);
return SUCCESS;
}
}
型号:
public class Gangster {
private String name; //getter and setter
}
modelDriven.jsp:
<s:form id="modelDrivenForm" action="modelDrivenResult" method="POST" namespace="/modelDriven">
<s:textfield
label="Gangster Name"
name="[1].name"/>
<sj:submit cssClass="btn btn-primary" executeScripts="true" targets="div1"/>
</s:form>
<div id="div1"/>
modelDrivenResult.jsp:
<s:label
label="Gangster Name"
name="name"/><br/>
在动作 execute
方法中,我们得到参数 name
应该由 params
拦截器填充并初始化模型属性以显示它结果.但问题是未填充参数.如何获取参数 name
被 params 拦截器填充,以便操作可以显示值?
In the action execute
method we are getting parameter name
which should be populated by the params
interceptor and initializing the model property to display it in the result. But the problem is the parameter is not populated. How to get parameter name
being populated by the params interceptor, so the action could display the value?
推荐答案
name
是模型的属性,也是动作类的属性.modelDriven
拦截器模型位于值堆栈之上,因此在 JSP 中很容易使用.动作对象位于模型下方.因此,可以使用 [1]
前缀直接引用它.请参阅 OGNL 基础知识.
The name
is the property of the model and also the property of the action class. The modelDriven
interceptor pushes the model on top of the value stack, so it is easy to use it in JSP. The action object is below the model. So, it could be referenced directly using [1]
prefix. See OGNL basics.
但如果模型和动作对象中没有重复的属性名称,则没有必要.当 OGNL 评估诸如 name
之类的名称时,它会从 valueStack
的顶部向下搜索属性访问器.第一个找到的访问器将被执行.因此,模型属性具有优先级,因为模型位于值堆栈的顶部.
But it's not necessary if there's no duplicate property names in the model and action object. When the name such as name
is evaluated by OGNL it searches from the top of the valueStack
to down the stack for the property accessor. The first found accessor will be executed. So, the model property has a priority because the model is on top of the value stack.
如果应该在操作上设置名称为 name
的属性,那么您可以直接将该属性命名为 [1].name
.但是,params的默认模式不接受此类参数名称代码>拦截器.但是,它是一个有效的 OGNL 表达式.因此,要让它通过拦截器,您需要将其添加到接受参数名称的模式中.就这样
If the property with the name name
should be set on the action then you could directly name that property as [1].name
. But, such parameter name is not accepted by default pattern of params
interceptor. However, it is a valid OGNL expression. So, to get it pass through the interceptor you need to add it to a pattern of accepted parameter names. Like that
@Action(value="modelDrivenResult", results=@Result(location = "/modelDriven/modelDrivenResult.jsp"),
interceptorRefs = @InterceptorRef(value="defaultStack", params={
"params.acceptParamNames", "(\[\d+\]\.)*\w+((\.\w+)|(\[\d+\])|(\(\d+\))|(\['\w+'\])|(\('\w+'\)))*"
})
)
这是因为 OGNL 还会检查接受参数的模式,并且此正则表达式模式允许匹配 params
和 OGNL 匹配器.
This is because OGNL also checks the pattern of accepted parameters and this regex pattern allows to match both params
and OGNL matchers.
这篇关于通过 Struts 2 中的 ModelDriven 将参数传递给动作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过 Struts 2 中的 ModelDriven 将参数传递给动作
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01