Spring自动填充列表问题
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
https://jira.springsource.org/browse/SWF-990 <--看看这个问题。
https://jira.springsource.org/browse/SWF-990 <-- look at this issue.