控制台输出的错误信息,页面报的是400的错误:Failed to bind request element: org.springframework.beans.TypeMismatchException: Failed to convert value of type [java.lang.String] to required type [long]; nested exception is java.lang.NumberFormatException: For input string: "book_update"
类型转换错误 Failed to convert value of type [java.lang.String] to required type [long]
谢谢,那这种错误该怎么解决呢?
@SunByMe: 你看看For input string: "book_update"
这句错误,已经很明显了,你输入的是book_update
但是你要转换的是 Long
类型,肯定报错呀,你看下代码中这块处理的逻辑是否正确。
@BUTTERAPPLE: 谢谢就是这的问题我知道了
@SunByMe: OK,可以结贴了。