包 javax.xml.bind.annotation 不存在

问题描述 投票:0回答:3

我尝试使用命令 mvn clean install 通过 commandpromt 构建 springboot 应用程序,但出现以下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compile) on project infytel_demo7_a: Compilation failure: Compilation failure:
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/PlanDTO.java:[3,33] package javax.xml.bind.annotation does not exist
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/PlanDTO.java:[5,2] cannot find symbol
[ERROR] symbol: class XmlRootElement
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/EntityList.java:[6,33] package javax.xml.bind.annotation does not exist
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/EntityList.java:[7,33] package javax.xml.bind.annotation does not exist
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/EntityList.java:[8,33] package javax.xml.bind.annotation does not exist
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/EntityList.java:[10,2] cannot find symbol
[ERROR] symbol: class XmlRootElement
[ERROR] /C:/Users/shilpa.nair01/Desktop/spring boot lex/Spring REST demos with script/infytel_demo7_validation/infytel_demo7a/src/main/java/com/infytel/dto/EntityList.java:[11,2] cannot find symbol

我正在使用 java 8 和 spring boot 2.2.1.Release .PFB 图像。

PFB 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.1.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.infytel</groupId>
    <artifactId>infytel_demo7_a</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>infytel_demo7_a</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-cache</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- Stuff related to XML serialization and deserialization -->
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
             <version>2.3.1</version>
        </dependency>
        <!-- Stuff related to XML serialization and deserialization -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>


    </dependencies>

    <build>
        <plugins>
        
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
            </plugin>
        </plugins>
    </build>

</project>

我做了以下几件事: --> 尝试从 .m2 文件夹中删除存储库。 -->在pom中添加maven编译器插件。

我在 jaxb-api 文件夹中有很多东西:

您能帮我解决这个问题吗?

eclipse spring-boot maven pom.xml maven-plugin
3个回答
0
投票

我使用的是 JDK 11,当我将 JAVA_HOME 和 Path 环境值指向 JDK 1.8.0_311 时。这个问题得到了解决。希望有帮助


0
投票

这可能有点晚了,但对面临同样问题的任何人都有帮助。 我通过在 Project Structure 窗口中更新 SDK 版本解决了这个问题。 在 IntelliJ 中,导航至 文件 -> 项目结构 -> 项目设置 -> 项目 SDK -> 选择计算机中的有效 SDK(对我来说,它是 1.8 java 版本)

然后构建项目或执行

mvn clean install


0
投票

问题用户提出的问题有什么不同?他们知道 jdk 1.8 将支持,但他们希望在 JDK 17 中实现此功能。任何人都可以解决此问题吗?谢谢。

© www.soinside.com 2019 - 2024. All rights reserved.