Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: F

错误示范
当有多个@RequestParam并且list<对象>里面是个对象的时候是会报错的

Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: Failed to convert value of type ‘java.lang.String’ to required type ‘java.util.List’; nested exception is java.lang.IllegalStateException: Cannot convert value of type ‘java.lang.String’ to required type ‘com.fan.entity.Canojo’: no matching editors or conversion strategy found]

Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: F_第1张图片
当传入的是基本数据类型的list是可以玩的
Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: F_第2张图片

解决方式
使用@RequestBody
Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: F_第3张图片
统一对象全部放进dto里面Resolved [org.springframework.web.method.annotation.MethodArgumentConversionNotSupportedException: F_第4张图片

你可能感兴趣的:(Java,spring,java-ee,java)