开发者

Validating Integer using JSR303

开发者 https://www.devze.com 2023-01-17 12:33 出处:网络
I decided to use JSR303 to validate my forms in Spring 3.0 MVC application. When I try to check @NotEmpty on Integer variable I have exception:

I decided to use JSR303 to validate my forms in Spring 3.0 MVC application. When I try to check @NotEmpty on Integer variable I have exception:

javax.validation.UnexpectedT开发者_Python百科ypeException: No validator could be found for type: java.lang.Integer

First this variable was declared as int (protected int partCount) but I found on the Spring forum that primitives may cause some problems, so I've changed that to Integer. Still same exception. Any ideas?

PS. Same situation with Double and Timestamp, no problems with Strings

Thanks


Not sure what implementation you're using but here is what Hibernate Validator writes about the NotEmpty annotation (which is not part of the Bean Validation specification):

Check that a String is not empty (not null and length > 0) or that a Collection (or array) is not empty (not null and length > 0)

Maybe you're looking for something else? Like NotNull, or Min?

0

精彩评论

暂无评论...
验证码 换一张
取 消