我需要让XSLT调用我作为参数传递的Java实例上的方法。到目前为止,如果我在XSLT本身中创建实例,我只能使它工作。如果我尝试在传递的实例上调用它,它将失败
Exception in thread "main" javax.xml.transform.TransformerConfigurationException:
Cannot find external method 'Test.get' (must be public).
我可以通过输出它来证明实例正常传递(它以toString形式出现)。这是我的Java:
public class Test {
public static void main(String[] args) throws Exception {
Transformer transformer = TransformerFactory.newInstance()
.newTransformer(
new StreamSource(Test.class.getResourceAsStream("test.xsl")));
transformer.setParameter("test1", new Test());
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
transformer.transform(new StreamSource(
new ByteArrayInputStream(
"<?xml version=\"1.0\"?><data></data>".getBytes())),
new StreamResult(outputStream));
System.out.println(outputStream.toString());
}
public String get() {
return "hello";
}
@Override
public String toString() {
return "An instance of Test";
}
}
这是我的xsl:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:test="xalan://Test"
exclude-result-prefixes="test"
>
<xsl:param name="test1" />
<xsl:variable name="test2" select="$test1"/>
<xsl:variable name="test3" select="test:new()"/>
<xsl:template match="/">
<data>
<!-- proves that the instance is really being passed -->
<xsl:value-of select="$test1"/>
</data>
<data>
<!-- first two do not work -->
<!--<xsl:value-of select="test:get($test1)"/>-->
<!--<xsl:value-of select="test:get($test2)"/>-->
<!-- this one does work -->
<xsl:value-of select="test:get($test3)"/>
</data>
</xsl:template>
</xsl:stylesheet>
有没有人知道如何使用传递的参数使其工作?在XSLT中实例化它在我的实际用例中不起作用。感谢。
答案 0 :(得分:1)
为了让这条线路正常工作:
<xsl:value-of select="test:get($test1)"/>
该参数可以传递给静态函数:
class Test {
public static void get(Object context) {
// here "context" is the instance "test1"
}
...
答案 1 :(得分:0)
我也遇到了同样的问题。检查后发现我们需要使用以下依赖项
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
<version>2.7.2</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.2</version>
</dependency>
添加这些依赖项后,我的代码就可以工作了。