IceFaces 中维护状态的问题
我正在使用 EJB-3 &我在 JBoss 上的应用程序中的 IceFaces。 刷新页面时,数据会丢失&所有字段都变为空白。
在另一个使用struts的类似应用中,没有出现这样的问题。 IceFaces(视图处理程序/渲染响应等)有这个问题吗?
I am using EJB-3 & IceFaces in my application on JBoss.
On refreshing the page, the data gets lost & all fields becomes blank.
In another similar application where struts is used, no such problem occurs.
Is this problem with IceFaces(View-handler/Render-response etc).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当 HTTP 请求涉及 GET 请求并且 bean 属于请求范围时,这是典型的情况。 struts 应用程序显然使用了会话范围的 bean。
This is typical when the HTTP request concerns a GET request and the bean is request scoped. The struts application was apparently using a session scoped bean.
如果您需要通过请求范围内的页面刷新来保留数据,那么您的程序逻辑有问题。
就其本质而言,请求范围只能使用该范围内的数据..这意味着每次发出新请求时数据都会丢失。
您所指的另一个应用程序是否在构造请求时将某些内容添加到请求范围中?
If you need to retain data through a page refresh in request scope then something is wrong with your program logic.
By its very nature request scope would only have available to it data within that scope .. which means that the data is lost each time a new request is made.
Is the other application you are referring to adding something into the request scope when it constructs the request?