4-新建子模块(尝鲜)

新建子模块

Maven多模块下新建子模块流程案例。

1、新建业务模块目录,例如:ruoyi-test

2、在ruoyi-test业务模块下新建pom.xml文件以及src\main\javasrc\main\resources目录。


<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>ruoyiartifactId>
        <groupId>com.ruoyigroupId>
        <version>x.x.xversion>
    parent>
    <modelVersion>4.0.0modelVersion>

    <artifactId>ruoyi-testartifactId>

    <description>
        test系统模块
    description>

    <dependencies>

        
        <dependency>
            <groupId>com.ruoyigroupId>
            <artifactId>ruoyi-commonartifactId>
        dependency>

    dependencies>

project>

3、根目录pom.xml依赖声明节点dependencies中添加依赖


<dependency>
    <groupId>com.ruoyigroupId>
    <artifactId>ruoyi-testartifactId>
    <version>${ruoyi.version}version>
dependency>

4、根目录pom.xml模块节点modules添加业务模块

<module>ruoyi-testmodule>

5、ruoyi-admin目录pom.xml添加模块依赖


<dependency>
    <groupId>com.ruoyigroupId>
    <artifactId>ruoyi-testartifactId>
dependency>

6、测试模块

ruoyi-test业务模块添加com.ruoyi.test包,新建TestService.java

public class TestService
{
    public String helloTest()
    {
        return "hello";
    }
}

ruoyi-admin新建测试类,调用helloTest成功返回hello代表成功。

你可能感兴趣的:(maven,spring,spring,boot)