0

Good day everyone!

I am a graduating student doing Google App Engine-Java Web Application.

My problem is I need to compile/build it so it will run upon click. I've been trying exporting it to a jar file however it outputs no main class.... problem.

I've been looking for other method but internet fails me or maybe i'm not pointing on the right track.

Here's my output whenever I'm using the command line:

command line

its working fine when i'm using eclipse.

Any leads? Sorry if my question is quite silly.

Thanks in advance :))

  • What exactly is your question? What are you trying to build/compile? Are you trying to install the Java SDK? You can find instructions for doing so here: https://developers.google.com/appengine/docs/java/gettingstarted/installing – Aaron Hampton Oct 27 '12 at 05:17
  • I'm trying to run my project without the use of any IDE. thanks :) – Rodel Ocampo Oct 27 '12 at 05:37

1 Answers1

0

Firstly you should definitely consider updating your GAE SDK as it seems the defaultZoneTL field was removed from JDK 1.6 U31. Updating the GAE SDK should avoid that problem.

If you can't do that then check http://code.google.com/p/googleappengine/issues/detail?id=6928 and try to implement one of the workarounds suggested. (Essentially launching with -Dappengine.user.timezone.impl=UTC OR -Dappengine.user.timezone=UTC)

Mark Doyle
  • 4,804
  • 3
  • 20
  • 23