On Mon, Nov 11, 2013 at 7:57 AM, <[email protected]> wrote: > We are hoping that we can upload .war file but that's not an option here, > so we are trying the eclipse plugin, so we just wanted to know if we need > to do a different coding (creating a brand new project) or we can just > upload an existing project (if yes how?). > >
You can most likely reuse most of your JAR file. But you will need to add in certain App Engine configuration files, such as *appengine-web.xml*: https://developers.google.com/appengine/docs/java/config/appconfig . You'll also need to look at the JRE whitelist at https://developers.google.com/appengine/docs/java/jrewhitelist and ensure that your project doesn't access any blocked classes. As for whether you need to use "different coding" that depends on your use case and how you want to architect your application. You can reuse your current design and simply copy & paste packages and files into a new Eclipse project. However, your application's efficiency may benefit from using App Engine specific services such as backends, task queue, and so forth. Look in the App Engine documentation and see if any of the listed services interest you. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
