I’m using Eclipse Juno, Tomcat 7. I cannot add my project to the server, it always said: there are no resources that can be added or removed from the server.
I tried to solve it by changing the .project file, following the instruction here http://greatwebguy.com/programming/eclipse/converting-a-java-project-to-a-dynamic-web-project-in-eclipse/
However there’s no Project Facets button shown when Project Properties dialog is shown, pls see attached screenshot.
What am I missing? thanks
PS: I’m aware this was asked, but my problem hasn’t been solved following the steps listed in there
Converting a Java Project to a Dynamic Web Project
Eclipse doesn’t see your
test-appas a project. So far, it is just a folder underTomcat v7.0 Server.Did create the project in Eclipse originally? Then you can make it a project (in the Eclipse sense) again by importing it: File -> Import -> (General) -> Existing project into Workspace. Then select the root folder containing the
.projectfile.Otherwise, you have to create a new Java project and add the existing source and configuration files.
In either case, when you have your project in the workspace, you can select it, choose Project -> Properties and then you can edit its facets.