Outline
Documentation
Infrastructure
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
MappingJackson2MessageConverter
such that the chat messages are converted from and to JSON.
Solution