当前位置: 代码迷 >> 综合 >> 解决java.lang.IllegalArgumentException: No converter found for return value of type: class java.util.A
  详细解决方案

解决java.lang.IllegalArgumentException: No converter found for return value of type: class java.util.A

热度:50   发布时间:2023-12-28 07:53:06.0

今天使用SSM框架,用@ResponseBody注解,出现了这个问题


这是由于springmvc默认是没有对象转换为json的转换器的,需要我们配置其他转换器,在这里我用了阿里的fastJson

首先引入fastJson的jar包

然后在springmvc配置文件中配置

<!-- 配置注解驱动 --><mvc:annotation-driven><mvc:message-converters register-defaults="false"><bean class="org.springframework.http.converter.StringHttpMessageConverter"/><bean class="org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter"/><bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/><bean class="org.springframework.http.converter.BufferedImageHttpMessageConverter"/><!-- 配置Fastjson支持 --><bean id="fastJsonHttpMessageConverter" class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter"><property name="supportedMediaTypes"><list><value>text/html;charset=UTF-8</value><value>application/json;charset=UTF-8</value></list></property></bean></mvc:message-converters></mvc:annotation-driven>

重启服务器后,在运行,问题解决

  相关解决方案