我使用@Min(0)来验证表单输入是否为正整数或0,但在输入1.2时遇到了NumberFormatException。(我使用Spring Boot + Thymeleaf)我的代码:private int qty;Failed to convert property value of type java.lang.String
我正在和Lombok一起玩,并且已经通过了很多链接,但是没有一个为我工作。@Setter @Getter@AllArgsConstructor@RequiredArgsConstructorpublic class Person { @GeneratedValue @Size(min = 1, max = 20)
@