Outline
Documentation
Infrastructure
Examples
Project
Spring Applications
Exercise: Chat Application (Advanced Messaging)
Add the starter
spring-boot-starter-json
as dependency to the application.
Define a
ChatMessage
class with a user and a text property.
Configure the
JacksonJsonMessageConverter
with the
typeId
property set to
chat
such that chat messages are converted from and to JSON.
Solution