java docs updates and fix the deserialisation for the LocalDate from topics

This commit is contained in:
Rodica Sutu
2018-06-15 14:30:33 +03:00
parent d2f303fab8
commit 9b16443987
2 changed files with 2 additions and 2 deletions

View File

@@ -216,7 +216,7 @@
<property name="extendingBeanName" value="rm.simpleMappingExceptionResolver"/> <property name="extendingBeanName" value="rm.simpleMappingExceptionResolver"/>
</bean> </bean>
<!-- Extend restJsonModule to add the list of custom serializers for formatting the LocalDate and DateTime from <!-- Extend restJsonModule to include the custom serializers for formatting the LocalDate and DateTime from
joda--> joda-->
<bean id="rm.restJsonModule" parent="restJsonModule"> <bean id="rm.restJsonModule" parent="restJsonModule">
<property name="jsonSerializers"> <property name="jsonSerializers">

View File

@@ -58,7 +58,7 @@ public class CustomDateTimeSerializer extends StdScalarSerializer<DateTime>
} }
/** /**
* Custom serialize to convert the org.joda.time.DateTime into string value using the DATE_TIME_FORMAT * Custom serialize method to convert the org.joda.time.DateTime into string value using the DATE_TIME_FORMAT
* *
* @param value datetime value * @param value datetime value
* @param jgen * @param jgen