Spring Webflux:仍需要可选的RequestPart / RequestParam吗?

时间:2018-10-10 09:58:59

标签: java spring spring-boot kotlin

我正在尝试使用可选的请求参数/请求部分,但是当我不提供可选参数时,我的请求将无限期地挂起。

@RestController
@RequestMapping("/service")
class MyController {
    @PostMapping
    fun print(@RequestPart("name", required = false) name: String) {
        if (name != null)
            print(name)
        else
            print("grr")
    }
}

如果我在请求中提供了参数name,则它不再肯定挂在邮递员中,请求通过。但是我希望在不提供参数name并显示“ grr”的情况下仍能通过。

此必需属性无法正常运行(至少在我看来),当您添加另一个所谓的可选属性时,该属性就会得到验证。

@RestController
@RequestMapping("/service")
class MyController {
    @PostMapping
    fun print(@RequestPart("name", required = false) name: String,
              @RequestPart("friend_name", required = false) friendsName: String) {
        if (name != null)
            print(name)
        else
            print("grr")
    }
}

现在,当我提供参数name但不提供参数friend_name时,它表示该值不能为空。

{
    "timestamp": "2018-10-10T09:50:49.305+0000",
    "path": "/service",
    "status": 500,
    "error": "Internal Server Error",
    "message": "Parameter specified as non-null is null: method co.example.controllers.MyController.print, parameter friendsName"
}

我为@RequestParam@RequestPart尝试了相同的结果。

1 个答案:

答案 0 :(得分:1)

将可选参数标记为可为空。因此:

@RequestPart("name", required = false) name: String?
@RequestPart("friend_name", required = false) friendsName: String?