美文网首页
java request常用的注解

java request常用的注解

作者: b470b9fc7145 | 来源:发表于2018-03-01 14:56 被阅读54次

NotBlank:用于字符串
NotNull/NotEmpty:用于集合

@NotNull: The CharSequence, Collection, Map or Array object is not null, but can be empty.
@NotEmpty: The CharSequence, Collection, Map or Array object is not null and size > 0.
@NotBlank: The string is not null and the trimmed length is greater than zero.

相关文章

网友评论

      本文标题:java request常用的注解

      本文链接:https://www.haomeiwen.com/subject/ncwgxftx.html