Reputation: 93
Google App Engine simple app is created and working on local. But i am unable to deploy to App Engine
But i am getting following error
Unable to update app: Failed to compile jsp files.
See the deployment console for more details Unable to update app: Failed to compile jsp files.
Upvotes: 0
Views: 190
Reputation: 8816
This means that there is a compilation problem for one or more of your JSPs. Observe the error in the Eclipse Console view and you will be able to see which of the JSPs did not compile. It will also point to an error log file that you can view to see the same compilation errors.
The reason that it is working on local could be due to you not executing any of those problematic JSPs, so it might just look like there is no problem.
Another issue could be that you have the JRE and not JDK setup in your Eclipse, as a result of which it is not able to compile.
Upvotes: 1