我有一个带有3个模块的Maven项目:schema
,gml
和adress
。模式包含两个XSD:gmlprofil-1.1.xsd
-一个简单的GML概要文件和adress.xsd
使用相对的schemaLocation导入GML模式,如下所示:
<import schemaLocation="../gml/gmlprofil-1.1.xsd" namespace="http://www.opengis.net/gml/3.2"/>
在
gml
模块和adress
模块中,我都将maven-jaxb2-plugin
与jaxb2-basics
一起使用,以生成具有equals()和hashCode()的类。 gml
模块工作正常,但是运行adress
时,出现此错误:com.sun.istack.SAXParseException2; IOException thrown when processing "../gml/gmlprofil-1.1.xsd". Exception: java.io.FileNotFoundException: C:\code\gml\gmlprofil-1.1.xsd
精细。一个目录文件可以解救!
REWRITE_SYSTEM "../gml/gmlprofil-1.1.xsd" "maven:com.test:schema:jar::!/com/test/schemas/gml/gmlprofil-1.1.xsd"
看来绝对路径已解析为OK,但是随后发生MalformedURLException。
[DEBUG] Parent resolver has resolved publicId [null], systemId [../gml/gmlprofil-1.1.xsd] to [maven:com.test:schema:jar::!/com/test/schemas/gml/gmlprofil-1.1.xsd].
[DEBUG] Resolving systemId [maven:com.test:schema:jar::!/com/test/schemas/gml/gmlprofil-1.1.xsd] as Maven dependency resource.
[DEBUG] Resolved dependency resource [Dependency {groupId=com.test, artifactId=schema, version=1.0-SNAPSHOT, type=jar, classifier=null, resource=com/test/schemas/gml/gmlprofil-1.1.xsd}] to resource URL [jar:file:/C:/code/jaxb-test/schema/target/schema-1.0-SNAPSHOT.jar!/com/test/schemas/gml/gmlprofil-1.1.xsd].
[DEBUG] Resolved systemId [maven:com.test:schema:jar::!/com/test/schemas/gml/gmlprofil-1.1.xsd] to [jar:file:/C:/code/jaxb-test/schema/target/schema-1.0-SNAPSHOT.jar!/com/test/schemas/gml/gmlprofil-1.1.xsd].
[ERROR] Error while parsing schema(s).Location [ maven:com.test:schema:jar::!/com/test/schemas/adress/adress.xsd{8,97}].
org.xml.sax.SAXParseException; systemId: maven:com.test:schema:jar::!/com/test/schemas/adress/adress.xsd; lineNumber: 8; columnNumber: 97; unknown protocol: maven
...
Caused by: java.net.MalformedURLException: unknown protocol: maven
这是我对
adress
的pom: <plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.13.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<bindingDirectory>src/main/resources</bindingDirectory>
<episode>true</episode>
<useDependenciesAsEpisodes>true</useDependenciesAsEpisodes>
<extension>true</extension>
<forceRegenerate>false</forceRegenerate>
<schemaLanguage>XMLSCHEMA</schemaLanguage>
<strict>false</strict>
<verbose>false</verbose>
<catalog>src/main/resources/catalog.cat</catalog>
<args>
<arg>-npa</arg>
<arg>-XsimpleEquals</arg>
<arg>-XsimpleHashCode</arg>
</args>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.9.5</version>
</plugin>
</plugins>
<schemas>
<schema>
<dependencyResource>
<groupId>com.test</groupId>
<artifactId>schema</artifactId>
<resource>com/test/schemas/adress/adress.xsd</resource>
</dependencyResource>
</schema>
</schemas>
</configuration>
</plugin>
我尝试了一些解决方案:
将Maven URL设置为schemaLocation:
<import schemaLocation="maven:com.test:schema:jar::!/com/test/schemas/gml/gmlprofil-1.1.xsd" namespace="http://www.opengis.net/gml/3.2"/>
设置一个绝对的schemaLocation并相应地更新目录文件:
<import schemaLocation="http://test.com/schemas/gml/gmlprofil-1.1.xsd" namespace="http://www.opengis.net/gml/3.2"/>
REWRITE_SYSTEM "http://test.com/schemas" "maven:com.test:schema:jar::!/com/test/schemas"
将
maven-jaxb2-plugin
版本降低到0.9.1。使用这种方法,我什至不需要目录文件,但是我得到了这个错误:[错误]无法在项目地址上执行目标org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.9.1:generate(默认):目标org.jvnet.jaxb2.maven2:maven-jaxb2-plugin的执行默认值:0.9.1:生成失败:执行org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.9.1:generate时缺少所需的类:com / sun / tools / xjc / model / Aspect
可以通过交换
-Xequals
和-XhashCode
而不是-XsimpleEquals
和-XsimpleHashCode
来解决。这三种解决方案都可以,但没有一种是完美的。前两个需要操纵模式,而第三个则在生成的类中引入了对
jaxb2-basics-runtime
的有害依赖。后者是可以接受的,但是如果有人知道如何使用我的设置运行simpleEquals,我将不胜感激。 最佳答案
好吧,欢迎来到我的痛苦世界。
您肯定知道ogc-schema项目,对吗?
有趣的部分实际上是目录甚至似乎已正确解析。不知道发生了什么,但这是我最终发现最有效的解决方案:
编译绝对URL:
<schemas>
<schema>
<url>http://test.com/schemas/adres/adres.xsd</url>
</schema>
</schemas>
使用目录重写
REWRITE_SYSTEM“ http://test.com/schemas”“ maven:com.test:schema:jar :: !! / com / test / schemas”
这基本上是您的第三个解决方案,但您不必更改架构。只需从绝对URL开始,它将被目录重写。
是啊:
免责声明我是maven-jaxb2-plugin,jaxb2-basics以及上述ogc-schema项目的作者。
顺便说一句,
jaxb2-basics-runtime
依赖关系有什么不好?