Outline
Documentation
Project
Spring Core
Exercise: Chat Application (Custom Message)
Define a
ChatMessage
class with a user and a text property.
Implement a message converter that automatically converts chat messages from and to CSV.
Configure the
JacksonJsonMessageConverter
with the
typeId
property set to
chat
such that chat messages are converted from and to JSON.
Solution