How to create a secure view with Vaadin and SpringViewProvider
问题 There is a tutorial about Vaadin III - Views and Navigation with Vaadin Spring If I want to use Apache Shiro. How should I use ViewAccessControl? @SpringComponent @SpringView(name = SecuredView.VIEW_NAME) public class SecuredView extends VerticalLayout implements View, ViewAccessControl { public static final String VIEW_NAME = "view"; @PostConstruct void init() { addComponent(new Label("This is a secured view scoped view")); } @Override public boolean isAccessGranted(UI ui, String string) {