Vaadin Page.getCurrent()。reload()登出

时间:2015-10-24 12:20:12

标签: vaadin reload vaadin7

我使用Page.getCurrent().reload()进行@Push anotation,它真正重新加载页面,但它似乎杀死了vaadin会话或其他东西,因为它要求用户在此之后重新登录。 请给我一些建议,第三天与此斗争...

1 个答案:

答案 0 :(得分:3)

Vaadin 7不会在页面重新加载时保留应用程序状态。 为此,您需要在主UI类上添加@PreserveOnRefresh

@PreserveOnRefresh
public class PreserveStateUI extends UI {
    ...
}

Wiki entry about state preservation