错误: 程序包com.sun.xml.internal.bind.v2.model.core不存在

2021/7/8 9:05:46

本文主要是介绍错误: 程序包com.sun.xml.internal.bind.v2.model.core不存在,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.问题描述

maven Install报错: 程序包com.sun.xml.internal.bind.v2.model.core不存在

解决

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
        <compilerArguments>
            <verbose />
            <bootclasspath>${java.home}/lib/rt.jar</bootclasspath>
        </compilerArguments>
    </configuration>
</plugin>
加入上面那段,编译时可以识别到rt.jar包


这篇关于错误: 程序包com.sun.xml.internal.bind.v2.model.core不存在的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程