在JBoss 7.5.0上使用REST服务时,XML文件处理不正确

时间:2015-10-21 15:25:04

标签: java xml rest jboss character-encoding

我们使用JBoss EAP 6.4.0.GA来部署我们的应用程序。

我们有一个REST服务方法,定义如下:

@POST
@Path("/test")
@Consumes("application/xml")
Response createTest(Test test, @Context UriInfo uriInfo);

Test是用于映射传入xml文件的类。

传入的XML文件保存为" ISO-8859-1"文件和内部我们定义编码如下

<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> 

&#34;常规&#34;字符一切正常,问题从我们在xml中äöü开始。 在这种情况下,当调用REST方法时,我们有一个异常

ERROR [org.jboss.resteasy.resteasy_jaxrs.i18n] (http-/172.28.105.3:443-6) RESTEASY000100: Failed executing POST /test: org.jboss.resteasy.plugins.providers.jaxb.JAXBUnmarshalException: javax.xml.bind.UnmarshalException
 - with linked exception:
[org.apache.xerces.impl.io.MalformedByteSequenceException: Invalid byte 2 of 3-byte UTF-8 sequence.]
    at org.jboss.resteasy.plugins.providers.jaxb.AbstractJAXBProvider.readFrom(AbstractJAXBProvider.java:147) [resteasy-jaxb-provider-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.interception.MessageBodyReaderContextImpl.proceed(MessageBodyReaderContextImpl.java:106) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.plugins.interceptors.encoding.GZIPDecodingInterceptor.read(GZIPDecodingInterceptor.java:63) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.interception.MessageBodyReaderContextImpl.proceed(MessageBodyReaderContextImpl.java:109) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.MessageBodyParameterInjector.inject(MessageBodyParameterInjector.java:168) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.MethodInjectorImpl.injectArguments(MethodInjectorImpl.java:137) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.MethodInjectorImpl.invoke(MethodInjectorImpl.java:160) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.ResourceMethod.invokeOnTarget(ResourceMethod.java:269) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.ResourceMethod.invoke(ResourceMethod.java:227) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.ResourceMethod.invoke(ResourceMethod.java:216) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.SynchronousDispatcher.getResponse(SynchronousDispatcher.java:541) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.SynchronousDispatcher.invoke(SynchronousDispatcher.java:523) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.core.SynchronousDispatcher.invoke(SynchronousDispatcher.java:125) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.plugins.server.servlet.ServletContainerDispatcher.service(ServletContainerDispatcher.java:208) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.service(HttpServletDispatcher.java:55) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.service(HttpServletDispatcher.java:50) [resteasy-jaxrs-2.3.10.Final-redhat-1.jar:]
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-servlet-api_3.0_spec-1.0.2.Final-redhat-2.jar:1.0.2.Final-redhat-2]

我们已尝试多种方法来解决此问题:

1)更改了方法签名,因此xml作为String接收,然后自己解组而不是依赖JBoss:

@POST
@Path("/test")
@Consumes("application/xml")
Response createTest(String xml, @Context UriInfo uriInfo);

在这种情况下,我们收到xml文件作为字符串,但äöü被替换为���。请注意,我们尝试使用此方法进行的下一次更改。

2)在standalone.xml中设置系统属性,如下所示:

<system-properties>
    <property name="org.apache.catalina.connector.URI_ENCODING" value="UTF-8"/>
    <property name="org.apache.catalina.connector.USE_BODY_ENCODING_FOR_QUERY_STRING" value="true"/>
</system-properties>

没有结果。有���而不是äöü

3)更改standalone.conf

设置JAVA_OPTS="$JAVA_OPTS -Dfile.encoding=UTF-8"

仍然没有结果。

4)更改xml文件的注释

@Consumes("application/xml;charset=ISO-8859-1")

在这种情况下 - 不支持的媒体类型

5)将传入的xml文件中的编码更改为UTF-8并将其保存为UTF-8。

在这种情况下,一切都按预期工作。但最好将xml文件保存在ISO-8859-1中,因为需要付出很多努力来改变工作流程。

任何人都可以提示我们接下来可以尝试什么吗?我确定必须有办法解决ISO-8859-1。

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我们最终改变了服务方法的签名:而不是String,我们传递字节数组

@POST
@Path("/test")
@Consumes("application/xml")
Response createTest(byte[] xml, @Context UriInfo uriInfo);

然后自己创建String对象:

String xmlAsString = new String(xml, "ISO-8859-1");