javax.validation 被球衣忽略

发布于 2025-01-06 09:52:17 字数 661 浏览 0 评论 0原文

我正在尝试使用 Jersey 从用户获取 JSON 请求来创建供应商

@POST
@Produces({APPLICATION_JSON})
@Consumes({APPLICATION_JSON})
@Path("create")
public Response create(VendorTO vendorTO) throws Exception {

,但在它转换为供应商对象之前,我想使用 javax.validation 对其进行验证,

我在我的 pojo 中添加了约束,如下所示

{@JsonSerialize(include=Inclusion.NON_NULL)
  public class VendorTO {
@NotNull
private Integer userId;
@Size(min = 2)
private String vendorName;
private String address1;
private String address2;
private String city;
private String state;
private String country;
private String email;
private String phone;

}

但它似乎不起作用。有人可以帮忙吗?

I am trying to use Jersey to get JSON request from the user to create vendor

@POST
@Produces({APPLICATION_JSON})
@Consumes({APPLICATION_JSON})
@Path("create")
public Response create(VendorTO vendorTO) throws Exception {

But before it converts in vendorTO object I want to validate it with javax.validation

I have added constraints in my pojo like this

{@JsonSerialize(include=Inclusion.NON_NULL)
  public class VendorTO {
@NotNull
private Integer userId;
@Size(min = 2)
private String vendorName;
private String address1;
private String address2;
private String city;
private String state;
private String country;
private String email;
private String phone;

}

but it doesnt seems to be working. Can anyone help ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静谧 2025-01-13 09:52:17

您需要告诉框架该参数应该是 @已验证:

@POST
@Produces({APPLICATION_JSON})
@Consumes({APPLICATION_JSON})
@Path("create")
public Response create(@Valid VendorTO vendorTO) {
    // ...
}

You need to tell the framework that the parameter should be @Validated:

@POST
@Produces({APPLICATION_JSON})
@Consumes({APPLICATION_JSON})
@Path("create")
public Response create(@Valid VendorTO vendorTO) {
    // ...
}
不必你懂 2025-01-13 09:52:17

目前,Jersey 似乎不支持原生 JSR 303。您可能必须编写一些 ResourceFilter 并手动处理验证。

At this point, it appears Jersey does not support JSR 303 natively. You might have to write some ResourceFilters and handle the validation manually.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文