springMVC+ajax+json进行传值出现415(Unsupported Media Type)错误

参考这篇文章已经将可能出现的问题都说明白了,我这边解决的问题是jar包导入的问题,在这记录一下。

@ResponseBody将前端传过来的字符串参数赋值给controller方法中的字符串变量,或者框架使用下边包中类进行解析对象然后返回json对象到前端。
<dependency>
  <groupId>com.fasterxml.jackson.core</groupId>
  <artifactId>jackson-databind</artifactId>
  <version>2.9.0</version>
</dependency>
<dependency>
  <groupId>com.fasterxml.jackson.core</groupId>
  <artifactId>jackson-core</artifactId>
  <version>2.9.0</version>
</dependency>
<dependency>
  <groupId>com.fasterxml.jackson.core</groupId>
  <artifactId>jackson-annotations</artifactId>
  <version>2.9.0</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/qq_36824335/article/details/84328785