如何修复未找到的模块:spring.web 和类似错误

How to fix module not found: spring.web and similar errors

我正在尝试使用 Java 11 构建一个简单的 Maven spring-rest 应用程序,但我不断收到 'module not found error'。

我在SO上看了很多类似的问题。我尝试了各种建议 - 删除 maven 存储库,解决一些警告等,但我仍然无法使项目工作。

我的父母 pom:

<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>

   <groupId>com.luv2code</groupId>
   <artifactId>spring-rest-demo</artifactId>
   <version>1.0</version>
    <modules>
        <module>nedim</module>
    </modules>
    <packaging>pom</packaging>

   <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <maven.compiler.source>11</maven.compiler.source>
      <maven.compiler.target>11</maven.compiler.target>
   </properties>

   <dependencies>

      <!-- Add Spring MVC and REST support -->
      <dependency>
         <groupId>org.springframework</groupId>
         <artifactId>spring-webmvc</artifactId>
         <version>5.0.5.RELEASE</version>
      </dependency>

      <!-- Add Jackson for JSON converters -->
      <dependency>
         <groupId>com.fasterxml.jackson.core</groupId>
         <artifactId>jackson-databind</artifactId>
         <version>2.9.5</version>
      </dependency>

      <!-- Add Servlet support for 
          Spring's AbstractAnnotationConfigDispatcherServletInitializer -->
      <dependency>
         <groupId>javax.servlet</groupId>
         <artifactId>javax.servlet-api</artifactId>
         <version>3.1.0</version>
      </dependency>
   </dependencies>

   <!-- Support for Maven WAR Plugin -->

   <build>

      <finalName>spring-rest-demo</finalName>

      <pluginManagement>
         <plugins><plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>3.2.0</version>               
            </plugin>                 
         </plugins>
      </pluginManagement>
   </build>

</project>

Child pom:

<?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>spring-rest-demo</artifactId>
        <groupId>com.luv2code</groupId>
        <version>1.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>nedim</artifactId>


</project>

module-info.java:

open module nedim {
    requires spring.context;
    requires spring.webmvc;
    requires spring.web; 
}

当我 运行 maven clean install 时,我得到以下信息:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project nedim: Compilation failure: Compilation failure: 
[ERROR] /D:/Workspace/Java/spring-rest-demo/nedim/src/main/java/module-info.java:[2,24] module not found: spring.context
[ERROR] /D:/Workspace/Java/spring-rest-demo/nedim/src/main/java/module-info.java:[3,24] module not found: spring.webmvc
[ERROR] /D:/Workspace/Java/spring-rest-demo/nedim/src/main/java/module-info.java:[4,24] module not found: spring.web
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :nedim

此外,我添加到 VM 选项 --show-module-resolution,但列表中没有 spring 个模块

主要问题是:org.apache.maven.plugins:maven-compiler-plugin:3.1:compile。这是一个非常旧的版本,不支持 JPMS。请更新到 3.8.1