vaadin JPAcontainer 和嵌套属性问题
我有实体 ExchangeRate {date,currencyFrom,rate} 。实体currencyFrom 具有属性code 和Name。我将其添加到容器 addNestedContainerProperty("currencyFrom.code"); 它工作正常,代码显示在 vaadin 表中。
现在我创建 BeanValidationForm 并向其中添加此字段。它崩溃是因为 BeanValidationValidator 它尝试查找currencyFrom.code的getter并在ExchangeRate中查找方法getCurrencyFrom.code。
怎么了?如何使用表单上的嵌套属性字段来显示一些信息。
可以修改 ExchangeRate 嵌套属性吗?
I have entity ExchangeRate {date, currencyFrom, rate} . Entity currencyFrom has properties code and Name. I add it to container addNestedContainerProperty("currencyFrom.code");
it works without problem and code is displayed in vaadin table.
Now I create BeanValidationForm and add this field to it. It crash because BeanValidationValidator it try to find getter for currencyFrom.code and looks for method getCurrencyFrom.code inside ExchangeRate.
What's wrong? How can I use nested property field on form to display some information.
It's possible to modify ExchangeRate nested properties?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案就在那里:vaadin 论坛
Answer is there: vaadin forum