Beware of using spring WebClient(Episode6)
Let's imagine we received the WebClient response data and then binding to ResponseDto. Message value in ResponseDto can be null.
public class ResponseDto {
private String id;
@Nullable
private String message;
public String getMessag...
yangbongsoo.hashnode.dev2 min read