Fading Coder

One Final Commit for the Last Sprint

Spring Boot and RabbitMQ: JSON Serialization for Producers and Listeners

RabbitMQ transports raw bytes. Too exchange domain objects as JSON, you can serialize manually or configure Spring AMQP to handle JSON automatically for both producers and consumers. Manual JSON serialization with ObjectMapper You can convert a POJO to JSON yourself and publish the resulting bytes....

Fix LocalDateTime deserialization errors when converting JSON to objects in Spring Boot

Symptom When a request body contains date-time strings such as "2020-05-04 00:00" and the target fields are of type java.time.LocalDateTime, Spring Boot (via Jackson) fails to deserialize: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserial...