gpt4 book ai didi

java - @ValidateOnExecution 什么时候应该与 Jersey 一起使用?

转载 作者:搜寻专家 更新时间:2023-10-31 20:33:38 26 4
gpt4 key购买 nike

我无法理解 @ValidateOnExecution 注释的本质。有人可以解释一下它的用例吗?

根据 jersey 的文档,资源方法的约束会自动验证。此代码片段来自jersey's example .

@GET
@NotNull
@HasId
public List<ContactCard> getContacts() {
return StorageService.findByName("");
}

@GET
@Path("{id}")
@NotNull(message = "{contact.does.not.exist}")
@HasId
public ContactCard getContact(
@DecimalMin(value = "0", message = "{contact.wrong.id}")
@PathParam("id") final Long id) {
return StorageService.get(id);
}

如果约束在 pojo 中,您可以使用 @Valid ( See ) 触发验证。

@Path("/")
class MyResourceClass {

@POST
@Consumes("application/xml")
public void registerUser(@Valid User user) {
...
}
}

那么@ValidateOnExecution 除了显式关闭验证之外还有什么用?

最佳答案

根据 Jersey latest documentation @ValidateOnExecution 注释应该用于下一个目的:

According to Bean Validation specification, validation is enabled by default only for the so called constrained methods. Getter methods as defined by the Java Beans specification are not constrained methods, so they will not be validated by default. The special annotation @ValidateOnExecution can be used to selectively enable and disable validation. For example, you can enable validation on method getEmail shown in Example

@Path("/")
class MyResourceClass {

@Email
@ValidateOnExecution
public String getEmail() {
return email;
}
...
}

The default value for the type attribute of @ValidateOnExecution is IMPLICIT which results in method getEmail being validated.

因此 @ValidateOnExecution 也可以至少用于启用 getter 方法的验证。

关于java - @ValidateOnExecution 什么时候应该与 Jersey 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30300503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com