Vaadin ServletException: Failed to load application class

后端 未结 1 358
旧时难觅i
旧时难觅i 2021-01-24 21:01

I have a vaadin and servlet error when i try to load the servlet in the browser by localhost/testVaadin/

I want to execute this sample to see how vaadin works, because I

相关标签:
1条回答
  • 2021-01-24 21:26

    Basically the error message is saying com.vaadin.terminal.gwt.server.ApplicationServlet tried to load com.example.testvaadin.SimpleAddressBook during initialisation and didn't succeed.

    To resolve this try the following:

    • check if the application deployment succeeded and the class: SimpleAddressBook is really in the right place in your servlet container
    • check if there is a vaadin-xx.yy.zz.jar in WEB-INF/lib
    • clean and rebuild the entire project
    0 讨论(0)
提交回复
热议问题