使用Java读取XML文件,返回SOAP请求

时间:2017-12-07 12:45:33

标签: spring web-services soap cxf blueprint

我使用SOAP和Blueprint相当新鲜(就像Spring一样)。 无论如何,我只是想学习基础知识,到目前为止做得很好。

使用Java类从XML文件中检索特定节点值时,我遇到了一个小问题。当我将应用程序作为独立运行时,但是当我使用Soap获取请求时,值" lastName"返回null。

public static void main(String[] args) throws XPathExpressionException {

    DocumentBuilderFactory builderFactory =
            DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = null;
    try {
        builder = builderFactory.newDocumentBuilder();
    } catch (ParserConfigurationException p) {
        p.printStackTrace();
    }
    try {
    Document document = builder.parse(new FileInputStream("d:\\input11.xml")); 
    XPath xP = XPathFactory.newInstance().newXPath();
    String expression ="/people/person/lastName";
    NodeList nodeList = (NodeList) xP.compile(expression).evaluate(document, XPathConstants.NODESET);
    for (int i = 0; i < nodeList.getLength(); i++) {
        lastName += nodeList.item(i).getFirstChild().getNodeValue() + " ";
    }
    } catch (IOException e) {
        e.printStackTrace();
    } catch (SAXException s) {
        s.printStackTrace();
    }

    System.out.println(lastName);
}

public static String returnLastName(String input){
System.out.println(lastName);

return "LastName: "+lastName +"\n";

} 

}

这是我的blueprint.xml代码:

    <bean id="lastNameBean" class="com.*****.camelBlueprintTest.XMLCamel" />
    <route id="lastName">
<from uri="cxf:bean:returnLName" />
<bean ref="lastNameBean" method="returnLastName" />
    <log message="The message contains ${body}" />
    <to uri="mock:result" />
</route>

因此,当我运行Java应用程序时,它实际上会返回姓氏,但是在SOAP请求中我得到了#Last; LastName:null&#34;。

1 个答案:

答案 0 :(得分:0)

AH !!我发现了错误。傻我。所以,我在我的蓝图“returnLastName”中调用该方法并且它返回null,我没有意识到这个方法被称为ALONE,所以将我的代码从main移动到方法中将其修改为魅力haha。

我觉得自己真的很傻,但这总是让我感到很小的错误。