Reputation: 1559
I'm currently studying Java and have developed a Java Application which I want to host on Google App Engine but when I run it and select as WAR directory my WebRoot directory I get an error "GWT compilation failed" and it asks to add an entry but there is nothing to add. Could anyone help me. Here is the structure of my application: structure http://s13.postimage.org/777suvr53/project.jpg
Upvotes: 0
Views: 393
Reputation: 5047
For GWT project, you must have entrypoint class and *.gwt.xml file. So, when you compile your application, GWT will try to find gwt.xml file first and then GWT will look entrypoint entry in gwt.xml.
You will not able to compile your jsp-servlet project with GWT. Please let me know if you have any question.
Upvotes: 1