No converter found for rturn value of type:class java.lang.Integer

  • 前言

    以前使用ajax都是后台往前台传字符串类型的数据,今天我想在一个请求里面既传整形型数据,又想传字符串类型的数据,然后就发现了三种错误,接下来请看我的错误!只是为了用CSDN记录一下我的错误,同时也希望可以帮到其他人,请多多包涵

  • 正文

    第一种错误(也算不上错误)-------- 中文乱码

    以前针对这个乱码发过博客(点我),就是后台传递过来的中文字符串,前台解析的时候是问号,如下所示,这个时候需要在后台controller类里面的方法上@Request Mapping中加了一个属性 produces

No converter found for rturn value of type:class java.lang.Integer_第1张图片
No converter found for rturn value of type:class java.lang.Integer_第2张图片

第二种错误------ No converter found for rturn value of type:class java.lang.Integer

原因: 这个就是说没有可以转换成Integer类型数据的转换器

解决方案: 在你的pom.xml文件中如一下依赖,导入消息转换器,当然你的springmvc的配置文件中也要有注解驱动(千万别倒错了,你导入的时候会有四个,要选择后缀为mvc的哈),在下面自取

叭叭一下: 因为在springmvc中默认提供了String类型的消息转换器,所以有其他类型时,要导入消息转换器噻

No converter found for rturn value of type:class java.lang.Integer_第3张图片

 <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.12.1</version>
    </dependency>
    
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.12.1</version>
    </dependency>
    
    <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>2.12.1</version>
    </dependency>
 <!--注解驱动,加载时会自动生成jackson的消息转换器-->
    <mvc:annotation-driven/>

第三种错误 ------------No conver for[class java.lang.Integer] with preset Content-Type ‘null’

原因::这个原因我也不是太清楚。如果有理解的可以交流一下哦

解决办法: 我把上面的 produces属性给去掉了,然后又为了防止中文乱码,把后台要传递的中文改成了英文传递给前台,在ajax中再在success的回调函数中输出中文。

叭叭一下: 我自己的理解是错误发生在这个Content-Type,由于加了produces属性,然后把Content-type设置为了text/html,所以出现了错误,等我日后知识增多了,再来搞这个。有懂得小伙伴,不妨说一下哈
No converter found for rturn value of type:class java.lang.Integer_第4张图片

你可能感兴趣的:(ssm,bug,乱码,Converter)