Maven多模块项目搭建+SSM框架整合(一、多模块搭建)

Maven多模块项目搭建+SSM框架整合(一、多模块搭建)

2017.08.07 18:50 15010浏览
					</div> 
				</div>	
			</div>
		</div> 

		 <!-- 手记详情 -->
		<div class="detail-content-wrap">  
			<div class="detail-content js-lookimg">
				
				<div><p>项目使用IDEA进行构建,源码将会提交到GitHub上,使用Eclipse的用户也可以轻松导入。</p>

在此我们将项目划分为4块,分别为model、dao、service和controller。

一、创建父模块


打开IDEA创建项目

<!–添加start–>
<packaging>jar</packaging>
<!–添加end–>
</project>

配置mytest-dao中的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>mytest-root</artifactId>
        <groupId>com.songci</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
&lt;artifactId&gt;mytest-dao&lt;/artifactId&gt;

<!–添加start–>
<packaging>jar</packaging>
<!–添加对mytest-model的依赖–>
<dependencies>
<dependency>
<groupId>com.songci</groupId>
<artifactId>mytest-model</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<!–添加end–>
</project>

配置mytest-service中的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>mytest-root</artifactId>
        <groupId>com.songci</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
&lt;artifactId&gt;mytest-service&lt;/artifactId&gt;

<!–添加start–>
<packaging>jar</packaging>

&lt;dependencies&gt;
    &lt;!--添加对mytest-model的依赖--&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;com.songci&lt;/groupId&gt;
        &lt;artifactId&gt;mytest-model&lt;/artifactId&gt;
        &lt;version&gt;${project.version}&lt;/version&gt;
    &lt;/dependency&gt;
    &lt;!--添加对mytest-dao的依赖--&gt;
    &lt;dependency&gt;
        &lt;groupId&gt;com.songci&lt;/groupId&gt;
        &lt;artifactId&gt;mytest-dao&lt;/artifactId&gt;
        &lt;version&gt;${project.version}&lt;/version&gt;
    &lt;/dependency&gt;
&lt;/dependencies&gt;

<!–添加end–>
</project>

配置mytest-web中的pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <parent>
        <artifactId>mytest-root</artifactId>
        <groupId>com.songci</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>mytest-web</artifactId>
    <packaging>war</packaging>
    <name>mytest-web Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
<!--添加start-->
        <!--添加对mytest-model的依赖-->
        <dependency>
            <groupId>com.songci</groupId>
            <artifactId>mytest-model</artifactId>
            <version>${project.version}</version>
        </dependency>
        <!--添加对mytest-dao的依赖-->
        <dependency>
            <groupId>com.songci</groupId>
            <artifactId>mytest-dao</artifactId>
            <version>${project.version}</version>
        </dependency>
        <!--添加对mytest-service的依赖-->
        <dependency>
            <groupId>com.songci</groupId>
            <artifactId>mytest-service</artifactId>
            <version>${project.version}</version>
        </dependency>
<!--添加end-->
    </dependencies>
    <build>
        <finalName>mytest-web</finalName>
    </build>
</project>

配置mytest_one中的pom.xml(就是最外面那个pom.xml)

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
&lt;groupId&gt;com.songci&lt;/groupId&gt;
&lt;artifactId&gt;mytest-root&lt;/artifactId&gt;
&lt;packaging&gt;pom&lt;/packaging&gt;
&lt;version&gt;1.0-SNAPSHOT&lt;/version&gt;
&lt;modules&gt;
    &lt;module&gt;mytest-model&lt;/module&gt;
    &lt;module&gt;mytest-dao&lt;/module&gt;
    &lt;module&gt;mytest-service&lt;/module&gt;
    &lt;module&gt;mytest-web&lt;/module&gt;
&lt;/modules&gt;

<!–添加start–>
<!–项目统一字符集编码–>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!–添加end–>
</project>

以上maven多模块就搭建好了,接下来我们在该项目基础上对Spring、SpringMVC、Mybatis进行整合

下一篇Maven-maven多模块项目搭建+SSM框架整合((二、Dao层添加测试,服务层添加))

GitHub地址:https://github.com/iamsongci/mytest_one

未完待续--------

点击查看更多内容

本文原创发布于慕课网 ,转载请注明出处,谢谢合作

13人点赞

若觉得本文不错,就分享一下吧!

	</div>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值