通知消息

通知消息是通知用户关于应用程序中的活动、流程、事件的弹出消息窗口。

如需展示通知消息,在视图类中注入 Notifications bean,然后使用其流式接口即可。下面的示例中,点击按钮时展示一个使用默认参数的通知:

@Autowired
private Notifications notifications;

@Subscribe("helloButton")
public void onHelloButtonClick(ClickEvent<Button> event) {
    notifications.show("Hello");
}

下面是一个使用自定义参数的通知:

notifications.create("Hello")
        .withType(Notifications.Type.WARNING)
        .withPosition(Notification.Position.BOTTOM_END)
        .withDuration(3000)
        .show();