Cannot convert value of type [java.lang.String] to required type [org.springframework.web.multipart.MultipartFile] for property

放肆的年华 提交于 2019-12-04 18:49:25

You were missing enctype="multipart/form-data" in your <form:form...> tag.

Since your form doesn't had enctype="multipart/form-data" spring was taking <form:input type="file".. as String and throwing error when it cannot convert String to MultipartFile for studentPhoto of type MultipartFile in Student class.

Here's the complete source code.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!