मैं स्प्रिंग बूट (१.२.१) का उपयोग कर रहा हूं, इसी तरह से उनके भवन में एक वेब सेवा ट्यूटोरियल के रूप में:
@RestController
public class EventController {
@RequestMapping("/events/all")
EventList events() {
return proxyService.getAllEvents();
}
}
तो ऊपर, स्प्रिंग एमवीसी ने जेन्स में मेरी EventList
वस्तु को क्रमबद्ध करने के लिए जैक्सन का उपयोग किया।
लेकिन मैं JSON प्रारूप में कुछ सरल अनुकूलन करना चाहता हूं, जैसे:
setSerializationInclusion(JsonInclude.Include.NON_NULL)
प्रश्न है, निहित JSON मैपर को अनुकूलित करने का सबसे सरल तरीका क्या है?
मैंने इस ब्लॉग पोस्ट में एक CustomObjectMapper और इतने पर बनाने की कोशिश की , लेकिन चरण 3, "स्प्रिंग संदर्भ में कक्षाएं पंजीकृत करें", विफल रहता है:
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'jacksonFix': Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException:
Could not autowire method: public void com.acme.project.JacksonFix.setAnnotationMethodHandlerAdapter(org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter);
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException:
No qualifying bean of type [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter]
found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}
ऐसा लगता है कि वे निर्देश स्प्रिंग एमवीसी के पुराने संस्करणों के लिए हैं, जबकि मैं नवीनतम स्प्रिंग बूट के साथ इस काम को प्राप्त करने का एक सरल तरीका ढूंढ रहा हूं।