1.IDEA开发之子模块无法继承父模块的依赖

目录

[1.1 出现的问题](#1.1 出现的问题)

[1.2 父模块的Pom.xml配置文件](#1.2 父模块的Pom.xml配置文件)

[1.3 子模块的Pom.xml配置文件](#1.3 子模块的Pom.xml配置文件)

[1.4 思考:究竟哪里出现了问题?](#1.4 思考:究竟哪里出现了问题?)


1.1 出现的问题

在开发Spring引入数据库外部配置文件,发现我开发的父模块Spring以及子模块spring6-ioc-xml出现了无法实现依赖继承的情况,如图1所示

图1 子模块无法继承父模块

1.2 父模块的Pom.xml配置文件

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>
    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>
    <groupId>com.haozihua</groupId>
    <artifactId>Spring6</artifactId>
    <packaging>pom</packaging>
    <version>1.0-SNAPSHOT</version>
<!--    <modules>-->
<!--        <module>spring6-ioc-xml</module>-->
<!--    </modules>-->
    <dependencies>
        <!--spring context依赖-->
        <!--当你引入Spring Context依赖之后,表示将Spring的基础依赖引入了-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>6.0.2</version>
        </dependency>

        <!--junit5测试-->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.6.3</version>
        </dependency>
        <!--log4j2的依赖-->
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>2.19.0</version>
        </dependency>

        <!--spring context依赖-->
        <!--当你引入Spring Context依赖之后,表示将Spring的基础依赖引入了-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>6.0.3</version>
        </dependency>

        <!-- MySQL驱动 -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.31</version>
        </dependency>

        <!-- 数据源 -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.2.15</version>
        </dependency>
    </dependencies>
</project>

1.3 子模块的Pom.xml配置文件

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>

<!--    <parent>-->
<!--        <groupId>com.haozihua</groupId>-->
<!--        <artifactId>Spring6</artifactId>-->
<!--        <version>1.0-SNAPSHOT</version>-->
<!--    </parent>-->
    <groupId>com.haozihua</groupId>
    <artifactId>spring6-ioc-xml</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>


</project>

1.4 思考:究竟哪里出现了问题?

思路:既然Pom.xml文件负责Maven的配置,说明父模块和子模块一定出现了某些问题,没有联系,于是查询一番资料后,我发现

父模块需要使用

<modules>

<module>spring6-ioc-xml</module>

</modules>标签才能使得父模块和子模块称为父子关系,如图2所示

图2 加入了modules标签的Maven

看上去还是很正常的,对吗,但是依赖还没有被引入。

这是因为子模块也需要对应的标签引入父模块的依赖

比如接下来的标签

复制代码
<parent>
    <groupId>com.haozihua</groupId>
    <artifactId>Spring6</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>

这个标签非常重要,即使把父模块的标签删掉了,还能显示父子依赖,而且子模块能够引入父模块的依赖,非常重要

1.5 总结

在Maven开发中,当发现父子模块无法实现依赖继承,说明Pom.xml文件出现问题,此时,需要在子模块中添加如下标签

XML 复制代码
<parent>
<groupId>com.haozihua</groupId>
<artifactId>Spring6</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

仅仅是为了显示父子模块的依赖,而不需要引入父模块的依赖,只需要在父模块的Pom.xml文件中添加

XML 复制代码
<modules>
    <module>spring6-ioc-xml</module>
</modules>

如下标签即可。

依赖可以正常使用了!

相关推荐
小码ssim2 小时前
IDEA使用tips(LTS✍)
java·ide·intellij-idea
小叶lr4 小时前
idea 配置 leetcode插件 代码模版
java·leetcode·intellij-idea
qq_429856574 小时前
idea启动服务报错Application run failed
java·ide·intellij-idea
小安同学iter6 小时前
Java进阶五 -IO流
java·开发语言·intellij-idea
不能只会打代码7 小时前
大学课程项目中的记忆深刻 Bug —— 一次意外的数组越界
java·github·intellij-idea·话题博客
聂 可 以9 小时前
IDEA一键启动多个微服务
java·微服务·intellij-idea
刘大浪9 小时前
IDEA 2024安装指南(含安装包以及使用说明 cannot collect jvm options 问题一)
java·ide·intellij-idea
栽树先生~1 天前
解决IntelliJ IDEA的Plugins无法访问Marketplace去下载插件
java·ide·intellij-idea
Ttang231 天前
Maven的安装——给Idea配置Maven
java·maven·intellij-idea
binggoling1 天前
WebStorm 2024.3/IntelliJ IDEA 2024.3出现elementUI提示未知 HTML 标记、组件引用爆红等问题处理
elementui·intellij-idea·webstorm