I'm not sure why but I get java.lang.NoClassDefFoundError: com/google/gwt/core/shared/GWTBridge on line 60 of Home.java.
Steps to reproduce:
- clone jenterprise and open jenterprise and HelloWorld projects
- Build jenterprise then HelloWorld
- Run HelloWorld ->
com.jenterprise.examples.helloworld.Begin - Go to: http://localhost:8090/examples/HelloWorld/home
What I'm trying to do is use onModuleLoad() to update the interface after executing some other logic in another method then use forward(request, response) to show the interface, i.e.
public void main(HttpServletRequest request, HttpServletResponse response) {
System.out.println("Running Home: main(HttpServletRequest request, HttpServletResponse response)");
onModuleLoad();
request.getRequestDispatcher("/index.jsp").forward(request, response);
}
onModuleLoad();can you post more complete stacktrace?final Button sendButton = new Button("Send");