Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The problem with RequestParam/DateTimeFormat and LocalDateTime #25878

Closed
AndrewBystrov opened this issue Oct 7, 2020 · 2 comments
Closed

The problem with RequestParam/DateTimeFormat and LocalDateTime #25878

AndrewBystrov opened this issue Oct 7, 2020 · 2 comments
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue

Comments

@AndrewBystrov
Copy link

AndrewBystrov commented Oct 7, 2020

Affects: \5.1.6
I have the following code

@GetMapping("/somepath")
public String getNextDayOfMonth(
    @RequestParam(value = "target_date", required = true)
    @DateTimeFormat(iso = DateTimeFormat.ISO.DATE)
    LocalDate targetDate
) {
    return targetDate.plusDays(1).getDayOfMonth();
}

But when I execute this handler with path like /sompath?target_date=, I get NullPointerException, because my variable target_date is null, but I define required=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:

String text = (String) source;
if (!StringUtils.hasText(text)) {
return null;
}

and think, that passing empty string for date - it's client error


@AndrewBystrov AndrewBystrov changed the title The problem with RequestParam annotation The problem with RequestParam/DateTimeFormat and LocalDateTime Oct 7, 2020
@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Oct 7, 2020
@ganeshbch
Copy link

I think the Null pointer Exception even though required is true and the client exception is because of the handler path.

The handler path mentioned is /sompath?target_date=
But the code has a handler called @GetMapping("/somepath")

The handler path has a typo and should be /somepath?target_date=
instead of /sompath?target_date=

Please notice the missing 'e' in handler path.
Hope this solves the issue.

@sbrannen
Copy link
Member

I'm closing this issue since it is effectively a duplicate of #23939.

@sbrannen sbrannen added in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Oct 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue
Projects
None yet
Development

No branches or pull requests

4 participants