-
Notifications
You must be signed in to change notification settings - Fork 38.6k
Closed
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: bugA general bugA general bug
Milestone
Description
Brian Clozel opened SPR-14663 and commented
Controller methods like the following throw NullPointerExceptions
because the ResponseEntityResultHandler
is trying to serialize the response entity body even though it's null
:
@RequestMapping("/test")
public Mono<ResponseEntity<Void>> test() {
return Mono.just(ResponseEntity.notFound().build());
}
Affects: 5.0 M1
Reference URL: https://github.com/bclozel/spring-boot-web-reactive/issues/22
Referenced from: commits 01bd8b9
Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)type: bugA general bugA general bug