日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

jibx_Jibx Jersey2集成

發布時間:2023/12/3 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 jibx_Jibx Jersey2集成 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

jibx

Jersey2為Jackson和JAXB提供內置支持。 但是默認情況下不支持Jibx。 要將Jibx與Jersey2結合使用,我們將XML輸入作為流,并在接收到請求之后,使用Jibx對其進行解析。 但是實際上,有更好的方法可以使用MessageBodyReader和MessageBodyWriter API來實現相同目的。 這是可以實現的方式:

  • 為使用Jibx的XML定義新的提供程序
  • 向Jersey ResourceConfig注冊
  • @Provider public class JibxXmlProvider implements MessageBodyReader<Object>, MessageBodyWriter<Object> {public boolean isReadable(Class<?> type, Type genericType,Annotation[] annotations, MediaType mediaType) { if(!MediaType.APPLICATION_XML_TYPE.equals(mediaType)){return false;}try {BindingDirectory.getFactory( type );} catch (JiBXException e) {return false;}return true;}public boolean isWriteable(Class<?> type, Type genericType,Annotation[] annotations, MediaType mediaType ) { if(!MediaType.APPLICATION_XML_TYPE.equals(mediaType)){return false;}try {BindingDirectory.getFactory( type );} catch (JiBXException e) {return false;}return true;}public Object readFrom(Class<Object> type, Type genericType,Annotation[] annotations, MediaType mediaType,MultivaluedMap<String, String> httpHeaders, InputStream entityStream)throws IOException, WebApplicationException {try {IBindingFactory factory = BindingDirectory.getFactory( type );IUnmarshallingContext context = factory.createUnmarshallingContext();return context.unmarshalDocument( entityStream, null ); } catch (Exception e) {e.printStackTrace();}return null;}public void writeTo(Object obj, Class<?> type, Type genericType,Annotation[] annotations, MediaType mediaType,MultivaluedMap<String, Object> headers, OutputStream outputStream)throws IOException, WebApplicationException {try {IBindingFactory factory = BindingDirectory.getFactory( type );IMarshallingContext context = factory.createMarshallingContext();context.marshalDocument( obj, "UTF-8", null, outputStream );}catch ( Exception e ) {e.printStackTrace();} }public long getSize(Object obj, Class<?> type, Type genericType,Annotation[] annotations, MediaType mediaType ) {return -1;}}

    定義了此類后,請按照以下步驟在Jersey上注冊:

    public class JerseyResourceInitializer extends ResourceConfig {public JerseyResourceInitializer() {packages(true, "com.adaequare.processing.service");// This line registers JibxXmlProvider as a new provider.register(JibxXmlProvider.class, MessageBodyReader.class, MessageBodyWriter.class);}}

    完成此配置后,每當有新請求出現時,就會調用JibxXmlProvider的isReadable方法。 如果計算結果為true,則調用readFrom進行對象轉換。

    希望這可以幫助!

    翻譯自: https://www.javacodegeeks.com/2014/04/jibx-jersey2-integration.html

    jibx

    總結

    以上是生活随笔為你收集整理的jibx_Jibx Jersey2集成的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。