目前,当输入json对象作为POST请求的主体时,Jersey将忽略它无法识别的任何键/值对。
示例:
public class TestObject{
private String value1;
private Integer value2;
// appropriate getters and setters
}
JSON对象:
{
"value1":"test",
"value2":1,
"value3":"wrong"
}
在上面的例子中,Jersey将接受这两个期望的值并创建TestObject忽略" value3"输入
如果无法识别JSON对象中的任何内容,是否有办法强制Jersey抛出异常而不是忽略该值?
编辑:
我的控制器看起来像这样:
@POST
@Consumes("application/json")
public Response handleTestObject(TestObject testObject){
//method execution here
}
所以我依靠Jersey将json输入转换为TestObject
答案 0 :(得分:0)
当你使用jackson进行转换时,如果传递了未知参数,它实际上应该抛出异常。我已经用杰克逊2.26尝试了这个:
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>2.26</version>
</dependency>
它抛出以下异常而无需进一步配置:
Unrecognized field "value3" (class de.jan.model.TestObject), not marked as ignorable (one known property: "test"])
at [Source: org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream@2ff055a5; line: 1, column: 25] (through reference chain: de.jan.model.TestObject["value3"])%
因此,如果您不受其他任何限制,您可能只需切换到杰克逊进行转换。
如果您已经使用过jackson但仍然没有收到此异常,那么您(或您正在使用的某个库)可能会在某处禁用此行为。要将其恢复,您可以将以下注释添加到班级TestObject
:
@JsonIgnoreProperties(ignoreUnknown = false)
这将导致jackson在反序列化此特定类的实例时为其他字段抛出异常。
要为所有对象配置此行为,您需要创建一个自定义ObjectMapper
解析器,如下所示:
@Provider
@Produces("application/json")
public class ObjectMapperResolver implements ContextResolver<ObjectMapper> {
private final ObjectMapper mapper;
public ObjectMapperResolver() {
mapper = new ObjectMapper();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
}
@Override
public ObjectMapper getContext(Class<?> type) {
return mapper;
}
}
并在ResourceConfig
。
如果你正在使用gson,你可能做的事情可能不多。对于支持未知属性处理程序存在一个未解决的问题,但到目前为止它尚未发布。您可以在issue tracker
中找到有关此内容的更多信息,包括剪切以手动检查其他字段的代码