如何验证 @PathVariable 是否已设置?

huangapple go评论69阅读模式
英文:

How to validate @PathVariable is set?

问题

以下是翻译好的内容:

这是我的Get请求:

@GetMapping("/stats/{fromDate}/{toDate}")
public StatsSummary getStatsSummary(@PathVariable String fromDate, @PathVariable String toDate) {

    logger.info("Calculating statistics between" + fromDate + ",to" + toDate);

    return statsService.getStatsSummary(fromDate, toDate);

}

我尝试将注解@NotBlank添加为:

public StatsSummary getStatsSummary(@PathVariable String fromDate, @PathVariable @NotBlank String toDate) {

但是,当我调用不包括toDate/stats/2020-05-30/时,我收到以下响应:

{
    "timestamp": "2020-09-04T06:02:46.567+00:00",
    "status": 404,
    "error": "Not Found",
    "message": "No message available",
    "path": "/stats/2020-05-30/"
}

所以注解没有被正确地注册?

更新:

似乎PathVariable不打算进行验证:

https://stackoverflow.com/questions/53997703/the-validators-validated-valid-do-not-work-with-spring-and-tomee

英文:

Here is my Get request:

@GetMapping("/stats/{fromDate}/{toDate}")
public StatsSummary getStatsSummary(@PathVariable String fromDate, @PathVariable String toDate) {

    logger.info("Calculating statistics between" + fromDate + ",to" + toDate);

    return statsService.getStatsSummary(fromDate, toDate);

}

I've tried adding the annotation @NotBlank as:

public StatsSummary getStatsSummary(@PathVariable String fromDate, @PathVariable @NotBlank String toDate) {

but when I invoke /stats/2020-05-30/ which does not include toDate I receive the response:

{
    "timestamp": "2020-09-04T06:02:46.567+00:00",
    "status": 404,
    "error": "Not Found",
    "message": "No message available",
    "path": "/stats/2020-05-30/"
}

So the annotation is not being registered correctly?

Update:

It seems PathVariable is not meant to be validated:

https://stackoverflow.com/questions/53997703/the-validators-validated-valid-do-not-work-with-spring-and-tomee

答案1

得分: 2

在REST中,路径变量是资源URL的一部分。因此,如果路径/URL的某个部分丢失,资源就会不同。

这就是为什么404是正确的响应代码。

如果这两个变量可以为空,它们应该使用@RequestParam。

英文:

In REST, path variables are part of the resource URL. Therefore, if a part of the path/URL is missing, the resource is different.

That is why a 404 is the correct response code.

If those two variables can be empty, they should be @RequestParam.

答案2

得分: 1

实际上,Spring通过发送404状态码向客户端返回了正确的响应。
当有人没有提供完整的URL时,404状态码是要响应的状态码。

正确的验证方式是使用一些日期类,如DateLocalDate,而不是String
可能你需要定义日期的适当格式,所以可以查看下面的链接了解详情。
https://www.baeldung.com/spring-date-parameters

英文:

Actually Spring by sending 404 returns correct answer to a client.
When someone doesn't provide full URL, the 404 is the status to respond.

The proper way to validate that is to use some date class like Date or LocalDate or similar instead of String.
Probably you'll need to define proper formatting of date so take a look at the following link for details.
https://www.baeldung.com/spring-date-parameters

答案3

得分: 0

将以下注解添加到适合我的类中(不是方法)

@Validated
英文:

Add the following annotation to the class worked for me.(Not to the method)

@Validated

huangapple
  • 本文由 发表于 2020年9月4日 14:13:33
  • 转载请务必保留本文链接:https://go.coder-hub.com/63735775.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定