My Spring Boot application provides the following REST controller:
@RestController @RequestMapping(\"/api/verify\") public class VerificationController {
This behavior has changed with Spring Boot 2.3 and is intentional. See release notes for details.
Setting server.error.include-message=always in the application.properties resolves this issue.
server.error.include-message=always
application.properties