首页  >  文章  >  Java  >  在Java中使用Jackson时何时使用@ConstructorProperties注解?

在Java中使用Jackson时何时使用@ConstructorProperties注解?

PHPz
PHPz转载
2023-08-27 20:53:051082浏览

在Java中使用Jackson时何时使用@ConstructorProperties注解?

@ConstructorProperties 注解来自 java.bean 包,用于通过带注解的构造函数将 JSON 反序列化为 java 对象。此注释从Jackson 2.7版本开始支持。此注释的工作方式非常简单,我们可以提供一个包含每个构造函数参数的属性名称的数组,而不是注释构造函数中的每个参数。

语法

@Documented
@Target(value=CONSTRUCTOR)
@Retention(value=RUNTIME)
public @interface ConstructorProperties

示例

import com.fasterxml.jackson.databind.ObjectMapper;
import java.beans.ConstructorProperties;
public class ConstructorPropertiesAnnotationTest {
   public static void main(String args[]) throws Exception {
      ObjectMapper mapper = new ObjectMapper();
      Employee emp = new Employee(115, "Raja");
      String jsonString = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(emp);
      System.out.println(jsonString);
   }
}
// Employee class
class Employee {
   private final int id;
   private final String name;
<strong>   </strong>@ConstructorProperties({"id", "name"})<strong>
</strong>   public Employee(int id, String name) {
      this.id = id;
      this.name = name;
   }
   public int getEmpId() {
      return id;
   }
   public String getEmpName() {
      return name;
   }
}

输出

{
 "empName" : "Raja",
 "empId" : 115
}

以上是在Java中使用Jackson时何时使用@ConstructorProperties注解?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除