spring-guides / gs-consuming-rest

Consuming a RESTful Web Service :: Learn how to retrieve web page data with Spring's RestTemplate.
https://spring.io/guides/gs/consuming-rest/
Apache License 2.0
195 stars 287 forks source link

Potential null pointer access: The variable quote may be null at this location #59

Closed vangotek closed 1 year ago

vangotek commented 1 year ago

after updating boot to 3.1.4 this error occurs. NullPointer

Potential null pointer access: The variable quote may be null at this location

log.info(quote.toString());

Buzzardo commented 1 year ago

To keep the code as simple as possible, we don't add usually null checks in the guides. In production code, though, it's certainly something to consider.