我有一個字段需要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