java - 构建具有动态内容的 Vaadin Web 应用程序

标签 java vaadin vaadin8

我正在尝试通过 Vaadin (Vaadin Framework 8) 创建一个网络应用程序。

我阅读了几页文档,但仍然对 Vaadin 应用程序的结构有很大的疑问。我的问题是我对它背后的理论缺乏了解,我将尝试通过第一次尝试代码来揭示我的问题。如果能帮助我理解 Vaadin 的工作原理,我将不胜感激。

我想创建一个用户可以注册、登录和注销的网站。

该网站的 GUI 结构是一个主页,如果用户未登录,则有一个按钮或类似的东西用于登录,如果用户已登录,它应该显示一个注销按钮,而不是登录按钮

首先,我有一个扩展 UI 的类;在那个类中,我设置了 servlet 和 init() 方法。

init() 方法中,我开始创建一个 VerticalLayout(),然后是一个 MenuBar 和一个 Panel(称为 contentPanel)。然后,我创建了一个 Navigator。我遇到的第一个问题是,我将 Navigator 理解为一种在不同页面之间浏览的可能性; Navigator 的构造函数需要一个 SingleComponentContainer,所以现在,我不知道如何在不同的网页之间导航。对于我的示例,在我使用面板的构造函数中:new Navigator(this, contentPanel); 然后我添加不同的 View,然后将出现在面板内。最后,我导航到 Welcome 页面。

MyUI 类:

public class MyUI extends UI {

    /**
     * Class that checks if the user is in the database 
     * and the psw inserted is correct
     */
    public static Authentication AUTH;
    public static User user = null;

    @WebServlet(value = "/*", asyncSupported= true)
    @VaadinServletConfiguration(productionMode = false, ui = MyUI.class)
    public static class MyUIServlet extends VaadinServlet {
    }

    @Override
    protected void init(VaadinRequest request) {

        AUTH = new Authentication();

        VaadinSession.getCurrent().setAttribute("user", user);

        final VerticalLayout layout = new VerticalLayout();
        layout.setMargin(true);
        setContent(layout);

        Panel contentPanel = new Panel("Main Panel");
        contentPanel.setSizeFull();

        new Navigator(this, contentPanel);
        getNavigator().addView(LoginPage.NAME, LoginPage.class);
        getNavigator().setErrorView(LoginPage.class);
        getNavigator().addView(LogoutPage.NAME, LogoutPage.class);
        getNavigator().addView(WelcomePage.NAME, WelcomePage.class);

        MenuBar.Command welcome = new Command() {
            @Override
                public void menuSelected(MenuItem selectedItem) {
                    getNavigator().navigateTo(WelcomePage.NAME);
                }
        };

        MenuBar.Command login = new Command() {
            @Override
            public void menuSelected(MenuItem selectedItem) {
                getNavigator().navigateTo(LoginPage.NAME);
            }
        };

        MenuBar.Command logout = new Command() {
            @Override
            public void menuSelected(MenuItem selectedItem) {
                getNavigator().navigateTo(LogoutPage.NAME);
            }
        };

        MenuBar mainMenu = new MenuBar();
        mainMenu.addItem("Welcome", VaadinIcons.ARROW_CIRCLE_LEFT, welcome);
        mainMenu.addItem("Login", VaadinIcons.ENTER, login);
        mainMenu.addItem("Logout", VaadinIcons.EXIT, logout);

        layout.addComponent(mainMenu);
        layout.addComponent(contentPanel);

        getNavigator().navigateTo(WelcomePage.NAME);

    }

}

登录页面类:

public class LoginPage extends VerticalLayout implements View {

    private static final long serialVersionUID = 1L;
    public static final String NAME = "loginpage";

    public LoginPage(){

        Panel panel = new Panel("Login");
        panel.setSizeUndefined();
        addComponent(panel);

        FormLayout content = new FormLayout();
        TextField username = new TextField("Username");
        content.addComponent(username);
        PasswordField password = new PasswordField("Password");
        content.addComponent(password);

        Button send = new Button("Enter");

        send.addClickListener(new Button.ClickListener() {
            private static final long serialVersionUID = 1L;

            public void buttonClick(ClickEvent event) {

                //The authenticate method will returns
                //true if the credentials are correct
                //false otherwise
                if(MyUI.AUTH.authenticate(username.getValue(), password.getValue())){

                    //In AUTH there is a User field called "user"
                    //User is a class that represents an user (so it has mail, psw, name etc)
                    VaadinSession.getCurrent().setAttribute("user", MyUI.AUTH.getUser());

                }else{
                    Notification.show("Invalid credentials", Notification.Type.ERROR_MESSAGE);
                    }

                }
            });

        content.addComponent(send);
        content.setSizeUndefined();
        content.setMargin(true);
        panel.setContent(content);
        setComponentAlignment(panel, Alignment.MIDDLE_CENTER);

    }

}

注销类与登录类结构相同;有一个注销方法:

private void doLogout() {

    MyUI.AUTH.setUser(null);
    VaadinSession.getCurrent().setAttribute("user", MyUI.AUTH.getUser());
    getSession().close();

}

另一个问题是:我如何根据用户状态(是否登录?)在我的布局中动态添加组件

下一个问题是:我不明白如何有效地进行注销。

我将添加完整的代码以方便任何测试。

public class LogoutPage extends VerticalLayout implements View {

    private static final long serialVersionUID = 1L;
    public static final String NAME = "logoutpage";

    public LogoutPage(){

        Panel panel = new Panel("Logout");
        panel.setSizeUndefined();
        addComponent(panel);

        Button logout = new Button("Logout");
        logout.addClickListener(e -> doLogout());
        addComponent(logout);

    }

    private void doLogout() {

        MyUI.AUTH.setUser(null);
        VaadinSession.getCurrent().setAttribute("user", MyUI.AUTH.getUser());
        getSession().close();

    }

}

______________________________________________________________________________

public class WelcomePage extends VerticalLayout implements View {

    private static final long serialVersionUID = 1L;
    public static final String NAME = "welcomepage";

    public WelcomePage() {
        setMargin(true);
        setSpacing(true);
        Label welcome = new Label("Welcome");
        welcome.addStyleName("h1");
        addComponent(welcome);

    }

    @Override
        public void enter(ViewChangeEvent event) {
    }

}

______________________________________________________________________________

public class Authentication {

    private static User user = null;
    //those fields should be in user; this is just a test
    private String userID = "ID";
    private String psw = "psw";

    public Authentication() {
    }

    public void setUser(User user) {
        Authentication.user = user;
    }

    public User getUser(){
        return Authentication.user;
    }

    public Boolean authenticate(String userID, String psw){

        if(userID == this.userID && psw == this.psw) {
            user = new User();
            return true;
        }

        return false;

    }

}

最佳答案

我看到许多用户在 vaadin 概念上苦苦挣扎。

简而言之,它不是一个基于页面的框架,您每次点击鼠标都会切换到一个新页面。

相反,它更像是一个 Swing 应用程序,您有一个单一的 gui 实例,您可以在其中添加表单/弹出窗口/按钮,根据用户交互修改和删除它们。这被称为 Single-Page Application .

Navigator 主要用于允许用户使用网络浏览器的后退/前进按钮导航到“上一页”或书签特定页面。

This link提供了有关此概念的一些更详细的信息。

回答你的问题: - 使用单页/导航 - 未登录时,显示模态登录弹出窗口 - 当用户正确输入认证时,去掉弹窗,竖排显示主要内容 - 当用户注销时,从垂直布局中移除内容

对于您的简单用例,无需使用导航器或 View

关于java - 构建具有动态内容的 Vaadin Web 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46773085/

相关文章:

java - 读取 int、double 和字符串并忽略标记

java - 使用rxjava订阅时如何返回 boolean 值

java - 使用新方法访问 ArrayList 时出现编译时错误

整数除法的Java余数?

java - Vaadin 覆盖表内按钮的列排序

java - 是否可以更改 Vaadin 8 中 CustomComponent 标题的样式

java - Vaadin 8 历史 API 和 SEO

Vaadin 14 Grid - 如何迭代网格行中的所有按钮

vaadin - 如何将验证传播到 CustomField 子组件

vaadin8 - 如何右对齐 Vaadin 8 网格列内容?