The problem with RequestParam/DateTimeFormat and LocalDateTime #25878
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
status: duplicate
A duplicate of another issue
Affects: \5.1.6
I have the following code
But when I execute this handler with path like
/sompath?target_date=
, I get NullPointerException, because my variabletarget_date
is null, but I definerequired=true
and DateTimeFormat annotation. I thought, if I set DateTimeFormat property and execute this mapping with invalid date string (empty in my case), I will get client exception (4xx codes) instead of server exception (5xx, cause NPE it is server side exception).I'm suspect, that problem in this line of code:
spring-framework/spring-context/src/main/java/org/springframework/format/support/FormattingConversionService.java
Lines 211 to 214 in d05803a
and think, that passing empty string for date - it's client error
The text was updated successfully, but these errors were encountered: