生活随笔
收集整理的這篇文章主要介紹了
Jibx Jersey2集成
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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 Jersey2集成 的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔 網站內容還不錯,歡迎將生活随笔 推薦給好友。