如何在 micronaut GET 请求中将参数设置为不需要?
How can I set param as not required in micronaut GET request?
我需要在我的请求中将一个参数设置为不需要。
我试过了:
@Get(value = "/list/{username}")
HttpResponse<?> list(String username, @QueryValue(value = "actionCode") String actionCode) {
...
}
当我发送请求 http://localhost:8080/notification/list/00000000000 时抛出以下错误:
{
"message": "Required Parameter [actionCode] not specified",
"path": "/actionCode",
"_links": {
"self": {
"href": "/notification/list/00000000000",
"templated": false
}
}
}
您可以在 Micronaut 中通过 javax.annotation.Nullable
注释将查询参数定义为可选参数:
import io.micronaut.http.annotation.Controller;
import io.micronaut.http.annotation.Get;
import io.micronaut.http.annotation.QueryValue;
import javax.annotation.Nullable;
@Controller("/sample")
public class SampleController {
@Get("/list/{username}")
public String list(
String username,
@Nullable @QueryValue String actionCode
) {
return String.format("Test with username = '%s', actionCode = '%s'", username, actionCode);
}
}
这里是示例调用及其结果。在没有 actionCode
的情况下调用:
$ curl http://localhost:8080/sample/list/some-user
Test with username = 'some-user', actionCode = 'null'
与actionCode
通话:
$ curl http://localhost:8080/sample/list/some-user?actionCode=some-code
Test with username = 'some-user', actionCode = 'some-code'
如您所见,没有错误,它在 Micronaut 版本 1 和版本 2 中都是这样工作的。
我需要在我的请求中将一个参数设置为不需要。
我试过了:
@Get(value = "/list/{username}")
HttpResponse<?> list(String username, @QueryValue(value = "actionCode") String actionCode) {
...
}
当我发送请求 http://localhost:8080/notification/list/00000000000 时抛出以下错误:
{
"message": "Required Parameter [actionCode] not specified",
"path": "/actionCode",
"_links": {
"self": {
"href": "/notification/list/00000000000",
"templated": false
}
}
}
您可以在 Micronaut 中通过 javax.annotation.Nullable
注释将查询参数定义为可选参数:
import io.micronaut.http.annotation.Controller;
import io.micronaut.http.annotation.Get;
import io.micronaut.http.annotation.QueryValue;
import javax.annotation.Nullable;
@Controller("/sample")
public class SampleController {
@Get("/list/{username}")
public String list(
String username,
@Nullable @QueryValue String actionCode
) {
return String.format("Test with username = '%s', actionCode = '%s'", username, actionCode);
}
}
这里是示例调用及其结果。在没有 actionCode
的情况下调用:
$ curl http://localhost:8080/sample/list/some-user
Test with username = 'some-user', actionCode = 'null'
与actionCode
通话:
$ curl http://localhost:8080/sample/list/some-user?actionCode=some-code
Test with username = 'some-user', actionCode = 'some-code'
如您所见,没有错误,它在 Micronaut 版本 1 和版本 2 中都是这样工作的。