How to convert Java Project to Web Project in Eclipse
Sometime we just need to convert our Java Project to Web Project in Eclipse IDE.
Here is some of the reasons you may need to convert Java Project to Web Project
1) Create / import a wrong project type
2) Initial java project migrate to java web project
3) Maven create a Java Project (eclipse:eclipse), but we need a web project feature.
4) Others…?
No mater what reasons we need to convert java project to web project. Eclipse does not provide a feature to convert it automatically. We have to do it manually.
Here is the steps to convert Java Project to Web Project in Eclipse
1) Create a empty dynamic web project and click on the .project file
2) Copy “web project” facet buildCommand and paste within “java project” .project buildSpec tag
<buildCommand> <name>org.eclipse.wst.common.project.facet.core.builder</name> <arguments> </arguments> </buildCommand>
3) Copy “web project” facet nature and paste within “java project” .project natures tag
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
P.S Be careful of the .project xml tag, make sure you paste into a correct location.
4) Save it.
5) Right click on Java Project, click properties.
6) Select Project Facets and click modify project button.
7) Click Dynamic Web Module and Java check box.

Finished, Now your java project has been converted into a web project.



Many thanks to Mkyong !
It helped me really !
Thanks a lot for this tip it was very helpful!
Merci beaucoup pour cet explicatif
Tks for this tip !
Work fine for me…
thanks, that helped me out!
Good to know it’s worked for you
, actually some guys said this is not working …. but it’s work for you and me at least
Excellent
[...] P.S If you want to convert existing java project to a web project in eclipse, you can convert it by modify the .project file. Please access my previous article to understand how do to it How to convert Java Project to Web Project in Eclipse [...]