我是靠谱客的博主 瘦瘦电灯胆,最近开发中收集的这篇文章主要介绍解决java.lang.IllegalArgumentException: No converter found for return value of type: class java.util.A,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天使用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>

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

最后

以上就是瘦瘦电灯胆为你收集整理的解决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所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部