double
이 필요한 필드가 있습니다. 당신이 String
입력하면, 기본 메시지는 같은입니다Spring Mvc - typeMismatch에 대한 사용자 정의 유효성 검사 메시지
Failed to convert property value of type java.lang.String to required type java.lang.Double for property price; nested exception is java.lang.NumberFormatException: For input string: "fsd"
값이 입력되지 않을 때를위한 사용자 정의 메시지. 이 메시지를 다음과 같이 설정했습니다.
@NotNull(message = "price is required")
private Double price;
유형 불일치에 해당하는 주석이 있습니까?
의미가 있습니다. 감사! – user2892437