java.lang.IllegalArgumentException: No converter found for return value of type: class

本文详细阐述了在Spring Boot应用中遇到数据无法转换的问题,并提供了通过添加依赖库和自定义消息转换器来解决该问题的方法。重点介绍了如何在POM.xml中引入Jackson核心库和数据绑定库,以及在Spring MVC配置文件中调整消息转换器配置,以实现对特定数据类型的正确转换。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文地址

http://stackoverflow.com/questions/33832735/spring-boot-application-no-converter-found-for-return-value-of-type


原因:请求返回的数据无法转换,需要添加如下配置

1.在pom.xml 里添加

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>2.4.3</version>
</dependency>
<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.4.3</version>
</dependency>

2.在spring-mvc 配置文件添加下面的配置,不使用默认的配置

<mvc:annotation-driven>
		<mvc:message-converters>
			<bean class="org.springframework.http.converter.StringHttpMessageConverter" />
			<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter" />
		</mvc:message-converters>
</mvc:annotation-driven>


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值