Spring自动填充列表问题

发布于 2024-12-01 13:17:39 字数 957 浏览 0 评论 0原文

我使用 java 脚本动态添加元素(单击添加时添加文本框)。每个文本框都将是我的域类中 bList 的元素。 请参见下面的

代码:

Class A
{

Approach1
List<B> bList= LazyList.decorate(
            new ArrayList<B>(), new InstantiateFactory(
                    B.class));

Approach2
List<B> bList= new AutoPopulatingList(B.class)

}

所以基本上我正在尝试将元素添加到 bList 中。 我知道我需要使用自动填充列表或惰性列表。但是这些都不起作用。当我尝试发布表单时,它抱怨集合有 0 个元素并且索引无效。 上面的声明是否足以确保我已准备好添加元素的列表。 另外,当我读到有关使用自动填充列表时。参考: http://blog.richardadamdean.com/?p= 12

它说我们必须更改控制器中的 formBackingObject 方法来实例化一个新的 AutoPopulatedList:

代码:

 ShoppingBasketForm sbf = new ShoppingBasketForm(); 
      sbf.setItems(new AutoPopulatingList(ShoppingBasketItem.class));

但我使用的是 spring webflow 而不是 spring MVC,所以我到底把这个逻辑放在哪里。

即使我尝试访问 它也会抱怨

请建议。

I am adding elements dynamically using java script(Adding textboxes when we click add).Each of this textbox would be an element of a bList in my domain class.
See Below

Code:

Class A
{

Approach1
List<B> bList= LazyList.decorate(
            new ArrayList<B>(), new InstantiateFactory(
                    B.class));

Approach2
List<B> bList= new AutoPopulatingList(B.class)

}

So basically i am trying to add elements to bList.
I know that i need to use autopopulatinglist or lazy list.But neither of these work.When i try to post the form it complains telling that collection has 0 elements and the index is invalid.
Is the above declaration enuf to ensure that i have the list ready to add elements.
Also when i read about using autopopulating list.Ref: http://blog.richardadamdean.com/?p=12

It says that we have to change the formBackingObject method in the controller to instantiate a new AutoPopulatingList:

Code:

 ShoppingBasketForm sbf = new ShoppingBasketForm(); 
      sbf.setItems(new AutoPopulatingList(ShoppingBasketItem.class));

But i am using spring webflow not spring MVC, So where exactly i put this logic.

Even if i try to access <form:input path="bList[0]" /> it would complain

Please advice.

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

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

发布评论

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

评论(1

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