का उपयोग कर एक विश्वसनीय सेवा से JSON लौट रहा है मेरे पास एक साधारण सेवा है जो जेएक्स-आरएस एनोटेशन के साथ एनोटेटेड है और @Produces("application/json")
एनोटेशन शामिल है।सीएक्सएफ डॉएसजीआई
service.exported.interfaces -> *
service.exported.configs -> org.apache.cxf.rs
org.apache.cxf.rs.address -> myURI
जब मैं अपने एप्लिकेशन को चलाने मैं यूआरएल हिट कर सकते हैं, लेकिन अपने ब्राउज़र रिटर्न
No message body writer has been found for response class MyClass.
मेरे OSGi कंसोल प्रदर्शित करता है:
Jan 11, 2012 2:29:48 PM org.apache.cxf.jaxrs.interceptor.JAXRSOutInterceptor writeResponseErrorMessage
WARNING: No message body writer has been found for response class MyClass.
मैं documentation पढ़ सकते हैं और हो सकता है सोचा था कि मैं एक JSON प्रदाता रजिस्टर करने के लिए की जरूरत है। एक्टिवेटर में मैंने जोड़ा:
bundleContext.registerService(new String[] { "javax.ws.rs.ext.MessageBodyReader",
"javax.ws.rs.ext.MessageBodyWriter" },
new org.apache.cxf.jaxrs.provider.JSONProvider(), null);
लेकिन इससे कोई फर्क नहीं पड़ता है।
मैं कैसे प्रतिक्रिया करूं "प्रतिक्रिया वर्ग MyClass के लिए कोई संदेश बॉडी लेखक नहीं मिला है।" त्रुटि संदेश?
ओह, डिफ़ॉल्ट जैक्सन है, जैक्सन नहीं, लेकिन यह वही JAXB है ... –