如何在xsi:schemaLocation中引用类路径XSD?

时间:2015-02-01 20:34:23

标签: xml

例如,我想要的不是像这样引用在线XSD:

<persistence xmlns="…" xmlns:xsi="…"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
    http://www.oracle.com/…/persistence_2_1.xsd">  <!-- online -->

要像这样引用类路径XSD:

<persistence xmlns="…" xmlns:xsi="…"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
    org/hibernate/jpa/persistence_2_1.xsd">   <!-- classpath -->

2 个答案:

答案 0 :(得分:2)

没有标准化的方法。某些产品可能支持类路径URI:classpath:org/hibernate/jpa/persistence_2_1.xsd。如果您的产品没有,您可以编写一个启用该功能的插件(LSResourceResolver)。

答案 1 :(得分:0)

我的团队有一个问题,当提供xsi:schemaLocation时,Spring Boot无法为Spring概要分析的单元测试找到架构。 classpath:xmlschemas/requiredSchema.xsd

经过数小时的调试,解决方案是使用相对路径:

/xmlschemas/requiredSchema.xsd

(xmlschemas目录位于资源根目录中)