我得到了这个例外:
致命错误:'非静态Java函数***的第一个参数不是有效的对象引用。'
当我尝试使用xml-maven-plugin转换XML文档时会发生这种情况。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
<configuration>
<transformationSets>
<transformationSet>
<dir>target/generated/wsdl</dir>
<stylesheet>src/test/resources/transform/my-transformation.xsl</stylesheet>
<includes>
<include>**/*.xsd</include>
</includes>
<outputDir>target/generated/wsdl</outputDir>
</transformationSet>
</transformationSets>
</configuration>
</plugin>
错误消息
[INFO] --- xml-maven-plugin:1.0:transform (transform--xsd) @ my-pom ---
Warning: org.apache.xerces.parsers.SAXParser: Feature 'http://javax.xml.XMLConstants/feature/secure-processing' is not recognized.
Warning: org.apache.xerces.parsers.SAXParser: Property 'http://javax.xml.XMLConstants/property/accessExternalDTD' is not recognized.
Warning: org.apache.xerces.parsers.SAXParser: Property 'http://www.oracle.com/xml/jaxp/properties/entityExpansionLimit' is not recognized.
ERROR: 'The first argument to the non-static Java function 'isTheRightElement' is not a valid object reference.'
FATAL ERROR: 'The first argument to the non-static Java function 'isTheRightElement' is not a valid object reference.'
XSL Transformation文件的内容
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://mysite/mycreate" xmlns:xalan="http://xml.apache.org/xslt" xmlns:mytag="http://andreas/ps-transformations" version="2.0">
<xsl:strip-space elements="*"/>
<xsl:output method="xml" indent="yes" xalan:indent-amount="4"/>
<xsl:variable name="myAnnotations" select="document('element-list.xml')"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="xs:element">
<xsl:param name="myValue" select="normalize-space(mytag:isTheRightElement(@class))"/>
<xsl:choose>
<xsl:when test="$myValue=''">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:when>
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
<xsl:element name="xs:annotation">
<xsl:element name="xs:documentation">
<xsl:value-of select="$elementValue"/>
</xsl:element>
</xsl:element>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:function name="myTag:isTheRightElement">
<xsl:param name="class"/>
<xsl:for-each select="$myAnnotations/elementList/element">
<xsl:if test="lower-case(@class) = 'something'">
<xsl:value-of select="text()"/>
</xsl:if>
</xsl:for-each>
</xsl:function>
</xsl:stylesheet>
答案 0 :(得分:0)
尝试使用XSLT 2.0'样式表'进行转换时出现此错误,但我使用的是XSLT 1.0解析器。
在我的情况下,当我删除saxon的maven依赖项时会发生这种情况,saxon是一个XSLT 2.0解析器。 Java 7附带的XSLT解析器只能处理XSLT 1.0。
Maven解决方案是保留Saxon:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>transform</goal>
</goals>
</execution>
</executions>
<configuration>
<transformerFactory>net.sf.saxon.TransformerFactoryImpl</transformerFactory>
<transformationSets>
<transformationSet>
<dir>src/main/resources/xml</dir>
<stylesheet>src/main/resources/xslt/my-transformation.xsl</stylesheet>
<includes>
<include>**/*.xml</include>
</includes>
<outputDir>target/generated/wsdl</outputDir>
</transformationSet>
</transformationSets>
</configuration>
<dependencies>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.6.0-5</version>
</dependency>
</dependencies>
</plugin>
答案 1 :(得分:0)
从XSLT到Java的调用处理没有在任何标准中定义 - 它完全取决于您使用的是哪个XSLT处理器。
另请注意,如果您使用的是Saxon,则版本8.7非常旧(约2006年)。目前的版本是9.6。
答案 2 :(得分:0)
对我来说,忘记将被调用的Java类添加到类路径只是一个愚蠢的错误。在eclipse中,您可以在运行->运行配置...->类路径选项卡上添加正确的Java类。