It seems that @RequiredArgsConstructor not working in the code below. Why is it?
@RequiredArgsConstructor
import java.io.Serializable; import lombok.Data; import lombok
It's also worth noting for future readers that @Data also provides @RequiredArgsConstructor, so using both annotations isn't necessary :)