আমার লক্ষ্যটি এমনভাবে কনফিগার করা objectMapper
যা এটি কেবলমাত্র উপাদানটির সাথে ধারাবাহিকভাবে বর্ণিত হয় যা দিয়ে টীকায়িত হয় @JsonProperty
।
এটি করার জন্য আমি এই ব্যাখ্যাটি অনুসরণ করেছিলাম যা বলে যে কীভাবে অবজেক্টম্যাপারকে কনফিগার করতে হয়।
আমি এখানে বর্ণিত হিসাবে কাস্টম অবজেক্টম্যাপার অন্তর্ভুক্ত করেছি ।
ক্লাসটি NumbersOfNewEvents
সিরিয়ালযুক্ত হওয়ার পরে এটিতে জসন-এ সমস্ত বৈশিষ্ট্য রয়েছে।
কারও কি ইঙ্গিত আছে? আগাম ধন্যবাদ
জ্যাকসন 1.8.0 বসন্ত 3.0.5
কাস্টমবজেক্টম্যাপার
public class CompanyObjectMapper extends ObjectMapper {
public CompanyObjectMapper() {
super();
setVisibilityChecker(getSerializationConfig()
.getDefaultVisibilityChecker()
.withCreatorVisibility(JsonAutoDetect.Visibility.NONE)
.withFieldVisibility(JsonAutoDetect.Visibility.NONE)
.withGetterVisibility(JsonAutoDetect.Visibility.NONE)
.withIsGetterVisibility(JsonAutoDetect.Visibility.NONE)
.withSetterVisibility(JsonAutoDetect.Visibility.DEFAULT));
}
}
servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="de.Company.backend.web" />
<mvc:annotation-driven />
<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="objectMapper" ref="jacksonObjectMapper" />
</bean>
</list>
</property>
</bean>
<bean id="jacksonObjectMapper" class="de.Company.backend.web.CompanyObjectMapper" />
</beans>
নাম্বার অফ নিউ নিউজ
public class NumbersOfNewEvents implements StatusAttribute {
public Integer newAccepts;
public Integer openRequests;
public NumbersOfNewEvents() {
super();
}
}