Struts 索引属性——找不到属性的 getter 方法

发布于 2024-07-13 16:08:48 字数 608 浏览 2 评论 0原文

所以在 struts 中我有一个有 5 个属性的动作表单。 每个属性都是一个字符串数组。

在我的表单类中,我的属性的 getter/setter 方法如下所示:

public String getPropertyX(int index) {
  return x[index];
}

public void setPropertyX(int index, String value) {
  x[index] = value; 
}

当我的表单第一次被处理时,我填充表单对象,当它显示相应的 JSP 时,我可以对其进行修改,以便它使用 struts 标签输出正确的值并获取每个数组的正确值。 但是,我希望这些成为输入,因此当我提交表单时,将为我填充对象/数组。 然而,在提交表单时,我收到“错误 500:没有属性的 getter 方法”。 当我将以下内容添加到表单对象时,我不再收到该错误:

public String getPropertyX() {
   return x;
}

我不再收到该错误,但现在当我处理表单时,后端会出现填充错误。 我可以用另一种方式来做,但我更愿意使用 struts 框架(我正在这里学习)。

So in struts I have an action form which has 5 properties. Each property is a String Array.

in my form class i getter/setter methods for the properties like the ones below:

public String getPropertyX(int index) {
  return x[index];
}

public void setPropertyX(int index, String value) {
  x[index] = value; 
}

When my form is first processed I populate the form object and when it displays the respective JSP i can tinker with it so it outputs the correct values using the struts tags and get the propper values for each array. However, I want those to be inputs so when i submit the form the object/arrays will be populated for me. However on submitting the form I get a "Error 500: No getter method for property." When I add the following to my form object I no longer get that error:

public String getPropertyX() {
   return x;
}

I no longer get that error, but now then it comes to a population error on the backend when i process the form. I could do it another way but I'd much rather use the struts framework (i'm learning here).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后知后觉 2024-07-20 16:08:48

我自己想出来了。 决定走一条完全不同的路。 创建了两个 ActionForm(不太确定第二个是否需要是 ActionForm,但它可以工作)。 其中一个包含我想要填充到表单每一行的表单中的实际元素。 另一个包含另一个的数组。 我遍历jsp上的数组并在输入上使用indexed =“true”我实现了我想要的。

Figured it out on my own. Decided to go a whole different way. Created two ActionForms (not really sure if the second one needed to be an ActionForm but it works). One contains the actual elements in the form I want to populate on each row of the form. The other contains an Array of the other. I iterate through the array on the jsp and using indexed="true" on the inputs I achieve what i want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文