gpt4 book ai didi

spring - 为多部分/表单数据添加JSON消息转换器

转载 作者:行者123 更新时间:2023-12-04 04:05:52 26 4
gpt4 key购买 nike

在我的Spring MVC服务器中,我想接收包含文件(图像)和一些JSON元数据的multipart/form-data请求。
我可以构建一个格式正确的多部分请求,其中JSON部分具有Content-Type=application/json
Spring服务的形式为:

@RequestMapping(value = MY_URL, method=RequestMethod.POST, headers="Content-Type=multipart/form-data")
public void myMethod(@RequestParam("image") MultipartFile file, @RequestParam("json") MyClass myClass) {
...
}

该文件已正确上传,但JSON部分出现问题。我收到此错误:
org.springframework.beans.ConversionNotSupportedException: Failed to convert value of type 'java.lang.String' to required type 'myPackage.MyClass'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [myPackage.MyClass]: no matching editors or conversion strategy found

如果我不使用多部分请求,则使用Jackson 2可以很好地进行JSON转换,但是当使用多部分时,我会得到先前的错误。我认为我必须配置多部分消息转换器以支持JSON作为消息的一部分,但我不知道如何。这是我的配置:
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" />
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"/>
</mvc:message-converters>
</mvc:annotation-driven>

如果我使用String作为MyClass的类型而不是MyClass的话,那么一切都很好,但是我想使用Spring MVC支持进行参数转换。

最佳答案

如果使用@RequestPart注释而不是@RequestParam,它将实际上通过消息转换器传递参数。
因此,如果将 Controller 方法更改为以下方法,则它应如您所描述的那样起作用:

@RequestMapping(value = MY_URL, method=RequestMethod.POST, headers="Content-Type=multipart/form-data")
public void myMethod(@RequestParam("image") MultipartFile file, @RequestPart("json") MyClass myClass) {
...
}

您可以在Spring引用指南中阅读有关它的更多信息: http://docs.spring.io/spring/docs/4.0.x/spring-framework-reference/html/mvc.html#mvc-multipart-forms-non-browsers

关于spring - 为多部分/表单数据添加JSON消息转换器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17885271/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com