我需要在项目中使用web服务。我使用NetBeans,所以我右键单击我的项目,并尝试添加一个新的“Web服务客户端”。上次我检查时,这是创建web服务客户机的方法。但它导致了一个AssertionError,说:

java.lang.AssertionError: org.xml.sax.SAXParseException;systemId: jar文件:/道路/ / glassfish /模块/ jaxb-osgi.jar ! / com/sun/tools/xjc/reader/xmlschema/bindinfo/binding.xsd;lineNumber: 52个;columnNumber: 88;schema_reference:读取架构文档'xjc失败。由于accessExternalSchema属性设置的限制,不允许访问“文件”。

NetBeans的默认Java平台是JDK8 (Oracle的官方版本),所以当我更改NetBeans .conf文件并将JDK7(也来自Oracle)作为我的默认平台时,一切都工作得很好。所以我认为问题出在JDK8上。这是我的java -version输出:

Java版本“1.8.0” Java(TM) SE运行时环境(build 1.8.0-b132) Java HotSpot(TM) 64位服务器虚拟机(build 25.0-b70,混合模式)

目前,我将JDK7作为默认的Java平台。如果有让JDK8工作的方法,请分享。


当前回答

在测试glassfish 4.0 web服务器上的web服务程序时,我在Eclipse中也遇到了类似的错误: java.lang.AssertionError: org.xml.sax.SAXParseException;systemId:包:/ / 158.0:1 / com/sun/tools/xjc/reader/xmlschema/bindinfo/binding.xsd;lineNumber: 52个;columnNumber: 88;schema_reference:读取架构文档'xjc失败。由于accessExternalSchema属性设置的限制,'bundle'访问是不允许的。

我已经在jaxp中添加了javax.xml.accessExternalSchema = All。属性,但不为我工作。

然而,我在下面找到了一个适合我的解决方案: 对于GlassFish服务器,我需要修改GlassFish的domain.xml, path:<path>/glassfish/domains/domain1或domain2/config/domain.xml),添加<jvm-options>-Djavax.xml。accessExternalSchema=all</jvm-options>在<java-config>标签下

....

< java-config > ... < jvm选项> -Djavax.xml.accessExternalSchema = < / jvm选项> < / java-config > ...然后重新启动GlassFish服务器

其他回答

创建一个名为jaxp的文件。“JDK version/jre/lib”路径下的properties(如果不存在),然后在其中添加以下行。

javax.xml.accessExternalSchema = all

我在2.4版的artifact org.codehaus.mojo上测试了这个功能,效果很好~

<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jaxws-maven-plugin</artifactId>
        <version>2.4.1</version>
        <executions>
            <execution>

                <goals>
                    <goal>wsimport</goal>
                </goals>
                <configuration>
                    <wsdlDirectory>path/to/dir/wsdl</wsdlDirectory>
                </configuration>
                <id>wsimport-web-service</id>
                <phase>generate-sources</phase>
            </execution>
        </executions>
        <dependencies>
            <dependency>
                <groupId>javax.xml</groupId>
                <artifactId>webservices-api</artifactId>
                <version>${webservices-api-version}</version>
            </dependency>
        </dependencies>
        <configuration>
            <vmArgs>
                <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
            </vmArgs>
            <sourceDestDir>generated-sources/jaxws-wsimport</sourceDestDir>
            <xnocompile>true</xnocompile>
            <verbose>true</verbose>
            <extension>true</extension>
            <sei>/</sei>
        </configuration>
    </plugin>
</plugins>

如果您正在使用Intellij IDEA,请在maven工具窗口中

选择Maven Settings,展开Maven下拉菜单,选择Runner。

在VM选项下添加-Djavax.xml.accessExternalSchema=all

另一个参考: 如果您使用的是maven-jaxb2-plugin,在版本0.9.0之前,您可以使用此问题所描述的解决方法,其中此行为会影响插件。

在我的例子中添加:

javax.xml.accessExternalSchema = all

jaxp。属性没有工作,我必须补充:

javax.xml.accessExternalDTD = all

我的环境是linux mint 17和java 8 oracle。 我会把它作为有同样问题的人的答案。