我使用Page.getCurrent().reload()
进行@Push
anotation,它真正重新加载页面,但它似乎杀死了vaadin会话或其他东西,因为它要求用户在此之后重新登录。
请给我一些建议,第三天与此斗争...
答案 0 :(得分:3)
Vaadin 7不会在页面重新加载时保留应用程序状态。
为此,您需要在主UI类上添加@PreserveOnRefresh
。
@PreserveOnRefresh
public class PreserveStateUI extends UI {
...
}