false
即使true
在客户端传递,使用布尔参数调用 REST 也会接收该值。
客户:
$http.post("http://localhost/getServers/?light=true")
服务器:
@Path("/getServers")
@POST
@Produces({MediaType.APPLICATION_JSON})
public Response getServers(
@Context HttpServletRequest request,
@DefaultValue("true") @QueryParam("light") boolean light)
{
// light is false even though true was passed
...
}