Seam 组件重用 - 抛出 @DataModel 变量冲突
我像往常一样需要您的建议;)
在我的 Seam 应用程序中,有一个 JSF 视图页面处理 3 种相似类型的数据,因此我编写了一个 Seam 组件并希望重复使用它 3 次。问题是,组件将视图使用的一些数据输出到 @DataModel 变量中。现在,有没有一种巧妙的方法可以在不使用继承等的情况下改变三个冲突的变量名称?如果没有,您会建议采取什么其他方法?提前致谢。
I need your suggestions as usual ;)
In my Seam app, there's a JSF view page processing 3 similar types of data, so I wrote a Seam component and would like to reuse it three times. The problem is, the component outjects some data used by the view into @DataModel variable. Now, is there a clever way to variate three conflicting variable names without using inheritance etc? If not, what kind of other approach would you suggest? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议不要使用喷射并使用继承,仅使用吸气剂来访问变量。
即:#{bean1.var} #{bean2.var} #{bean3.var}
i suggest don't use outjection and use inheritance and just getters to access variable.
ie: #{bean1.var} #{bean2.var} #{bean3.var}