将普通maven项目改成maven web项目

1.修改pom属性packaging为war

 <packaging>war</packaging>

2.修改propertoes--project faces

将普通maven项目改成maven web项目_第1张图片

3.把WebContent下面两个目录 META-INF ,WEB-INF 直接剪切到src/main/webapp

4.右键properties--> Deployment Assembly

remove-->WebContent

add-->Floder-->next-->/src/main/webapp

add-->Java Build Path Entries--next-->maven dependencies

将普通maven项目改成maven web项目_第2张图片

你可能感兴趣的:(maven)