gpt4 book ai didi

java - JAXB 编码失败,错误为 "unsupported javax.xml.parser.transform.Result parameter"

转载 作者:行者123 更新时间:2023-12-01 17:31:31 30 4
gpt4 key购买 nike

我正在使用 Spring 3.1.1 及其 OXM 内容,使用 RestTemplate 将请求发送到另一台服务器。我使用一个名为 ClassTermCollection 的类作为请求端和响应端,并使用 @XmlRootElement 等进行注释,并且直到今天为止一直工作良好。但是,当 JAXB 尝试创建请求时,我们突然收到以下错误(即,在对服务器进行 http 调用之前,在客户端引发此错误)。

Google 几乎没有透露有关此特定错误的任何有用信息,而且 - 更糟糕的是 - Sun 显然没有使用 JDK 将源代码发送到引发异常的类...所以我什至无法调试所有内容深入到问题的根源,以确定到底发生了什么。

编辑:(请参阅堆栈跟踪下面的其他注释)

[ERROR] org.springframework.http.converter.HttpMessageNotWritableException: Could not write [pmt.model.collections.ClassTermCollection@6576fac]; nested exception is org.springframework.oxm.MarshallingFailureException: JAXB marshalling exception; nested exception is javax.xml.bind.MarshalException: unsupported javax.xml.parser.transform.Result parameter[ERROR] at org.springframework.http.converter.xml.MarshallingHttpMessageConverter.writeToResult(MarshallingHttpMessageConverter.java:134)[ERROR] at org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter.writeInternal(AbstractXmlHttpMessageConverter.java:66)[ERROR] at org.springframework.http.converter.AbstractHttpMessageConverter.write(AbstractHttpMessageConverter.java:179)[ERROR] at org.springframework.web.client.RestTemplate$HttpEntityRequestCallback.doWithRequest(RestTemplate.java:588)[ERROR] at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:436)[ERROR] at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:409)[ERROR] at org.springframework.web.client.RestTemplate.postForObject(RestTemplate.java:287)[ERROR] at com.pmt.fe.server.InvestmentServiceImpl.saveTerms(InvestmentServiceImpl.java:306)[ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)[ERROR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)[ERROR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)[ERROR] at java.lang.reflect.Method.invoke(Method.java:601)[ERROR] at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:569)[ERROR] at com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:551)[ERROR] at com.pmt.fe.server.RemoteServiceDispatcher.invokeAndEncodeResponse(RemoteServiceDispatcher.java:115)[ERROR] at com.pmt.fe.server.RemoteServiceDispatcher.processCall(RemoteServiceDispatcher.java:75)[ERROR] at com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:248)[ERROR] at com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:62)[ERROR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)[ERROR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)[ERROR] at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)[ERROR] at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:362)[ERROR] at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)[ERROR] at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)[ERROR] at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:729)[ERROR] at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)[ERROR] at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)[ERROR] at org.mortbay.jetty.handler.RequestLogHandler.handle(RequestLogHandler.java:49)[ERROR] at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)[ERROR] at org.mortbay.jetty.Server.handle(Server.java:324)[ERROR] at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505)[ERROR] at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:843)[ERROR] at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:647)[ERROR] at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:205)[ERROR] at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:380)[ERROR] at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395)[ERROR] at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:488)[ERROR] Caused by: org.springframework.oxm.MarshallingFailureException: JAXB marshalling exception; nested exception is javax.xml.bind.MarshalException: unsupported javax.xml.parser.transform.Result parameter[ERROR] at org.springframework.oxm.jaxb.Jaxb2Marshaller.convertJaxbException(Jaxb2Marshaller.java:758)[ERROR] at org.springframework.oxm.jaxb.Jaxb2Marshaller.marshal(Jaxb2Marshaller.java:597)[ERROR] at org.springframework.oxm.jaxb.Jaxb2Marshaller.marshal(Jaxb2Marshaller.java:580)[ERROR] at org.springframework.http.converter.xml.MarshallingHttpMessageConverter.writeToResult(MarshallingHttpMessageConverter.java:131)[ERROR] ... 36 more[ERROR] Caused by: javax.xml.bind.MarshalException: unsupported javax.xml.parser.transform.Result parameter[ERROR] at com.sun.xml.internal.bind.v2.runtime.MarshallerImpl.createXmlOutput(MarshallerImpl.java:221)[ERROR] at com.sun.xml.internal.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:236)[ERROR] at org.springframework.oxm.jaxb.Jaxb2Marshaller.marshal(Jaxb2Marshaller.java:593)[ERROR] ... 38 more

好的,找到来源了1 com.sun.xml.internal.bind.v2.runtime.MarshallerImpl 在线,现在我看到(某种程度上)发生了什么。该代码查看 Result 实例,如果它是 StreamResult(在我的例子中),它会尝试取消引用 StreamResult 的 outputstream、writer 和 systemId 字段,并使用这些值来构造 Writer。如果它们全部为 null,则它会落入方法的底部并抛出“不支持的格式”异常,这就是此处发生的情况。

上面,在 Spring org.springframework.http.converter.xml.AbstractXmlHttpMessageConverter 类中,我们到达了这一行,它构造了 StreamResult,将 outputMessage.getBody() 的结果传递给 StreamResult 构造函数。我在这里得到空值,因此问题从下面冒出来。

@Override protected final void writeInternal(T t, HttpOutputMessage outputMessage) throws IOException { writeToResult(t, outputMessage.getHeaders(), new StreamResult(outputMessage.getBody())); }
<小时/>

已解决

成功了……我忘记了它的所有细节;但这基本上是一种疯狂的情况,一位同事添加了一些代码来子类化 HttpClient 类之一,而他的类没有完全履行接口(interface)的约定,当由我的代码调用时,它导致了这个错误。这是一种奇怪的情况,看起来像 JAXB 错误,但事实证明它与 JAXB 完全无关。

最佳答案

您的问题是,当您实例化 StreamResult 时,您必须提供一种方法来存储将写入其中的数据。你应该做一些事情:

StreamResult res=new StreamResult(new ByteArrayOutputStream());

ByteArrayOutputStream 将根据需要增长。

关于java - JAXB 编码失败,错误为 "unsupported javax.xml.parser.transform.Result parameter",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10425376/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com