Google AppEngine Failed to compile jsp files. mac os

Go To StackoverFlow.com

1

I'm trying to deploy my Java EE project on GoogleAppEngine on eclipse (Indigo/ mac os X lion). But I have an error:

com.google.appengine.tools.admin.JspCompilationException: Failed to compile jsp files.

I checked my JRE path, it seems to be good. Maybe a library? Anyone have an idea?

2012-04-05 17:11
by Victor


1

To compile jsp files you need the JDK. The JRE does not help here.

2012-04-05 18:07
by stewe
Thank you for your response. Where can i check my jdk - Victor 2012-04-05 18:22
I found my error, i use java code :

pourcentage1 = total1 *100.0 / marks.size();

And compiler doesn't know .size() function.

Anyone have an idea - Victor 2012-04-05 18:31

I hope this helps: http://manski.net/2011/12/30/eclipse-and-the-jdk-under-mac-os-x-lion - stewe 2012-04-05 18:33
Ads