使用eclipse创建多模块maven web项目

 

前提:eclipse已经安装maven插件。

 

1. 首先创建一个父类工程:

右键 -> New -> Other... -> Maven Project

使用eclipse创建多模块maven web项目_第1张图片
Next >

使用eclipse创建多模块maven web项目_第2张图片
Next >  

使用eclipse创建多模块maven web项目_第3张图片
Finish 

到此,父类工程创建完毕。

 

2. 创建普通project

右键 -> New -> Other... -> Maven Module

使用eclipse创建多模块maven web项目_第4张图片


使用eclipse创建多模块maven web项目_第5张图片
 

使用eclipse创建多模块maven web项目_第6张图片

使用eclipse创建多模块maven web项目_第7张图片
 
   

创建普通project成功。

配置此maven project项目如下:

a.修改JDK版本:

使用eclipse创建多模块maven web项目_第8张图片

使用eclipse创建多模块maven web项目_第9张图片
  

修改project Facets

使用eclipse创建多模块maven web项目_第10张图片

使用eclipse创建多模块maven web项目_第11张图片
  

普通project设置完成

 

3. 创建Web project

右键 -> New -> Other... -> Maven Module

使用eclipse创建多模块maven web项目_第12张图片

 

使用eclipse创建多模块maven web项目_第13张图片
 

使用eclipse创建多模块maven web项目_第14张图片

使用eclipse创建多模块maven web项目_第15张图片
 

配置JDK配置及project Facets的方法与普通project相同。

 

4. 为Web project添加普通project依赖(即,为parent-web添加parent-model依赖,在parent-web工程中可以引入parent-model工程下的包及类文件)。

 

双击parent-web工程下的pom.xml添加依赖:

使用eclipse创建多模块maven web项目_第16张图片
 

查看是否添加成功看如下三个图片:

使用eclipse创建多模块maven web项目_第17张图片

使用eclipse创建多模块maven web项目_第18张图片
第三种方法是,在parent-model工程中创建测试类及方法。之后在parent-web中进行访问调用。  

使用eclipse创建多模块maven web项目_第19张图片
 
 

5.查看父类工程和子类工程是否建立关联

使用eclipse创建多模块maven web项目_第20张图片
 

使用eclipse创建多模块maven web项目_第21张图片
 

 

6.把web工程加入tomcat,看看启动是否正常。

使用eclipse创建多模块maven web项目_第22张图片
 

 

 

你可能感兴趣的:(eclipse)