我想自定义不同步信息,例如:https://vaadin.com/book/vaadin7/-/page/application.errors.html
我有:
public class SpringApplicationServlet extends AbstractApplicationServlet {
...
@Override
protected SystemMessages getSystemMessages() {
logger.debug("getSystemMessages()");
CustomizedSystemMessages m = new CustomizedSystemMessages();
m.setOutOfSyncCaption("My custom caption");
return m;
}
...
我清楚地看到没有调用getSystemMessages(),但是在处理多个窗口时会显示带有“不同步”标题的红色通知。 瓦丁的书说
您可以通过实现覆盖默认系统消息 UI类中的getSystemMessages()方法。
如何知道要覆盖getSystemMessages()
的班级? SpringApplicationServlet
似乎是最合适的