项目:vaadin4spring
文件:Application.java
/**
* Provide custom system messages to make sure the application is reloaded when the session expires.
*/
@Bean
SystemMessagesProvider systemMessagesProvider() {
return new SystemMessagesProvider() {
@Override
public SystemMessages getSystemMessages(SystemMessagesInfo systemMessagesInfo) {
CustomizedSystemMessages systemMessages = new CustomizedSystemMessages();
systemMessages.setSessionExpirednotificationEnabled(false);
return systemMessages;
}
};
}