SAXParseException with jdk8 and maven-jaxb2-plugin

2022-09-02 19:31:22

如果您使用类似插件来解析 xsd 文件,则在从 jdk7 升级到 jdk8 时会遇到以下异常:org.jvnet.jaxb2.maven2:maven-jaxb2-plugin

org.xml.sax.SAXParseException; systemId: file:/D:/Work/my/schema.xsd; lineNumber: 27; columnNumber: 133; schema_reference: Failed to read schema document 'CoreComponentsTechnicalSpecification-1p0.xsd', because 'file' access is not allowed due to restriction set by the accessExternalSchema property.

你如何使这个插件与jdk8一起工作?


答案 1

这个问题与这个问题有相同的根本原因。有两种方法可以解决此问题:

设置 javax.xml.accessExternalSchema system 属性:

如果只是在本地构建,则可以将此行添加到名为 jaxp.properties 的文件(如果它不存在)的 /path/to/jdk1.8.0/jre/lib 下:

javax.xml.accessExternalSchema=all

如果您可能正在与其他人一起处理项目,这将不起作用,特别是如果他们仍在使用jdk7。您可以使用命令行上指定的系统属性运行 maven 构建:

$mvn <target and options> -Djavax.xml.accessExternalSchema=all

您还可以使用插件为您设置系统属性:

<plugin>
    <!-- Needed to run the plugin xjc en Java 8 or superior -->
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>properties-maven-plugin</artifactId>
    <version>1.0-alpha-2</version>
    <executions>
        <execution>
            <id>set-additional-system-properties</id>
            <goals>
                <goal>set-system-properties</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <properties>
            <property>
                <name>javax.xml.accessExternalSchema</name>
                <value>all</value>
            </property>
            <property>
                <name>javax.xml.accessExternalDTD</name>
                <value>all</value>
            </property>
        </properties>
    </configuration>
</plugin>

您还可以配置 以设置属性:maven-jaxb2-plugin

<plugin>
   <groupId>org.jvnet.jax-ws-commons</groupId>
   <artifactId>jaxws-maven-plugin</artifactId>
   <version>2.3</version>
   <configuration>
     <!-- Needed with JAXP 1.5 -->
     <vmArgs>
         <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
     </vmArgs>
   </configuration>
</plugin>

设置目标版本:如果不想使用系统属性,可以设置目标版本 2.0:maven-jaxb2-plugin

<plugin>
    <groupId>org.jvnet.jaxb2.maven2</groupId>
    <artifactId>maven-jaxb2-plugin</artifactId>
    <version>${maven.plugin.jaxb2.version}</version>
    <configuration>
        <args>
            <arg>-target</arg>
            <arg>2.0</arg>
        </args>
    </configuration>
</plugin>

答案 2

对于 2.4 版本的插件:

<externalEntityProcessing>true</externalEntityProcessing>

推荐