saplingPro
saplingPro

Reputation: 21329

What is the way to import application hosted on GAE, into eclipse?

I have some applications running on GAE. I was using netbeans to maintain the applications but have now shifted to eclipse. I have installed the necessary plugins required to run and deploy GAE apps.

I want to import those applications hosted on GAE into eclipse. How can I do this in eclipse ?

Upvotes: 0

Views: 28

Answers (1)

Martin Berends
Martin Berends

Reputation: 4178

Create a new workspace in Eclipse and create new projects there with the same names and application ids as your existing applications. Create the same Java namespaces as you had in NetBeans in these new projects. Import the source code files from the NetBeans directories into the new Eclipse project namespaces.

This manual approach is the most likely to succeed. Various shortcuts hoped for by lazy people have a greater risk of failing because of undocumented differences between NetBeans and Eclipse.

Upvotes: 1

Related Questions