我知道这是一个重复的问题,但是其他主题的答案并没有帮助我。
我正在使用Eclipse Photon,Java版本:10,我已在eclipse和pom.xml文件中将jdk / jre版本设置为10。我已经更改了eclipse.ini文件:
-Dosgi.requiredJavaVersion = 10(已设置为1.8)
并且我还在pom.xml中添加了插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>10</source>
<target>10</target>
</configuration>
</plugin>
没有任何帮助。这是我的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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.luv2code</groupId>
<artifactId>spring-security-demo-06-user-roles</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<name>spring-security-demo</name>
<properties>
<maven.compiler.source>10</maven.compiler.source>
<maven.compiler.target>10</maven.compiler.target>
</properties>
<dependencies>
<!-- Spring Security -->
<!-- Spring Security WEB -->
<!-- Spring Security taglibs -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>5.1.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>5.1.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
<version>5.1.1.RELEASE</version>
</dependency>
<!-- Spring MVC support -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<!-- Servlet, JSP and JSTL support -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- TO DO: Add support for Maven WAR Plugin -->
<build>
<finalName>spring-security-demo</finalName>
<pluginManagement>
<plugins>
<plugin>
<!-- Add Maven coordinates forL maven-war-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>10</source>
<target>10</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
没有在类文件中读取依赖项,我也尝试删除.m2存储库并启动Eclipse并执行:Maven-> Clean,Maven-> install,然后执行Maven-> update项目。没有任何帮助。我现在在这里停留了大约2-3个小时。
注意:在Windows-> Preferences->已安装的JRE中,jre10标记有勾号。我将其更改为jdk10。但仍然错误:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project spring-security-demo-06-user-roles: Compilation failure
在我添加了spring-security-taglibs的依赖项之前,一切工作正常。
删除依赖项也无济于事。
答案 0 :(得分:2)
使用Eclipse中的项目版本和maven的运行程序版本检查正确的设置。
我使用 maven-compiler插件复制了相同的问题,但是使用版本3.8.1:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project testName: Fatal error compiling
我的POM是:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
要澄清:
在项目中,我使用Java 11和IntelijIDEA(但我认为在Eclipse中使用相同的逻辑)。因此,仅当我的项目版本(正确检查项目结构->项目设置)与maven运行程序的版本相对应时,我才可以使用maven生命周期阶段。
例如如果Runner的版本适用于Java 8,而项目设置适用于Java 11,则出现此错误。如果两者都相同,那么我就没有任何问题。
我强烈建议检查maven和整个项目的所有设置。它有助于避免将来出现问题。删除maven文件夹是一种替代解决方案,但这必须是您要做的最后一件事。
答案 1 :(得分:0)
它开始自动运行。 FIX:删除.m2存储库。
昨天我这样做了,但今天却无济于事,删除.m2存储库并更新项目很有帮助!
答案 2 :(得分:0)
确认,删除.m2 / settings.xml指向的整个本地存储库,通常是.m2 / repository
答案 3 :(得分:0)
我将Java SDK更新到11.9,然后重新加载了项目。有了这个,我解决了我的问题。