Reputation: 21329
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
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