服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - @RequestBody不能映射到对象的解决

@RequestBody不能映射到对象的解决

2022-02-25 00:50kalibiubiubiu Java教程

这篇文章主要介绍了@RequestBody不能映射到对象的解决方案,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

@RequestBody不能映射到对象

在使用@RequestBody 映射对象时总是获取不到json穿过来的值

@RequestMapping(value = "/json")
public  @ResponseBody Items json(@RequestBody Items items) {
System.out.println(items);
return items;
}

@RequestBody不能映射到对象的解决

public class Items {
  private Integer id;
  private String name;
  private Float price;
  private String pic;
  private Date createtime;
  private String detail;
  public Integer getId() {
      return id;
  }
  public void setId(Integer id) {
      this.id = id;
  }
  public String getName() {
      return name;
  }
  public void setName(String name) {
      this.name = name == null ? null : name.trim();
  }
  public Float getPrice() {
      return price;
  }
  public void setPrice(Float price) {
      this.price = price;
  }
  public String getPic() {
      return pic;
  }
  public void setPic(String pic) {
      this.pic = pic == null ? null : pic.trim();
  }
  public Date getCreatetime() {
      return createtime;
  }
  public void setCreatetime(Date createtime) {
      this.createtime = createtime;
  }
  public String getDetail() {
      return detail;
  }
  public void setDetail(String detail) {
      this.detail = detail == null ? null : detail.trim();
  }
@Override
public String toString() {
return "Items [id=" + id + ", name=" + name + ", price=" + price + ", pic=" + pic + ", createtime=" + createtime
+ ", detail=" + detail + "]";
}  
}

解决方法

在springmvc.xml配置文件加入fastjson库,代码如下

<mvc:annotation-driven>
  <mvc:message-converters register-defaults="true">
      <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
      </bean>
  </mvc:message-converters>
</mvc:annotation-driven>

@RequestBody不能映射到对象的解决

然后问题就解决了

@RequestBody不能映射到对象的解决

@RequestBody不能映射到对象的解决

 

@RequestBody使用方法(将数据映射到java对象上)

将请求的json数据映射到@RequestBody 声明的对象上

1.请求方式如下

将id,name,age 的值映射到对象上

@RequestBody不能映射到对象的解决

2.对象定义如下

属性名称要和json中的名称对应上

@Getter
@Setter
@ToString
public class UserEntity {
  private Long id;
  private String name;
  private int age;
}

3.可以看到,json数据映射到UserEntity里

@RequestBody不能映射到对象的解决

以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_37759106/article/details/79828367

延伸 · 阅读

精彩推荐