@Accessors(chain = true)註解報錯的解決方案

如下所示:

Cannot invoke setItemTitle(String) on the primitive type void

定義的實體類如下:

  @Data
  public static class RefundOrderItem implements Serializable {
    /**
     * 商品標題
     */
    @JsonProperty("item_title")
    private String itemTitle;
    /**
     * 數量
     */
    private BigDecimal quantity;
    public RefundOrderItem() {
      super();
    }
    public RefundOrderItem(String itemTitle, BigDecimal quantity) {
      this.itemTitle = itemTitle;
      this.quantity = quantity;
    }
  }
}

這種寫法不報錯

request.getItems()
.add(new RefundOrderItem(productPO.getName(), quantity));

這種寫法報錯

request.getItems()
.add(new RefundOrderItem().setItemTitle(productPO.getName()).setQuantity(quantity)));

上述報錯的解決方法如下:

在定義的實體類上加上註解:@Accessors(chain = true)

實體類代碼如下:

@Data
  @Accessors(chain = true)
  public static class RefundOrderItem implements Serializable {
    /**
     * 商品標題
     */
    @JsonProperty("item_title")
    private String itemTitle;
    /**
     * 數量
     */
    private BigDecimal quantity;
    public RefundOrderItem() {
      super();
    }
    public RefundOrderItem(String itemTitle, BigDecimal quantity) {
      this.itemTitle = itemTitle;
      this.quantity = quantity;
    }
  }
}

lombok的@Accessors註解使用要註意

Accessors翻譯是存取器。通過該註解可以控制getter和setter方法的形式。

特別註意如果不是常規的get|set,如使用此類配置(chain = true或者chain = true)。在用一些擴展工具會有問題,比如 BeanUtils.populate 將map轉換為bean的時候無法使用。具體問題可以查看轉換源碼分析

@Accessors(fluent = true)#

使用fluent屬性,getter和setter方法的方法名都是屬性名,且setter方法返回當前對象

class Demo{
    private String id;
    private Demo id(String id){...}  //set
    private String id(){} //get
}

@Accessors(chain = true)#

使用chain屬性,setter方法返回當前對象

class Demo{
    private String id;
    private Demo setId(String id){...}  //set
    private String id(){} //get
}

@Accessors(prefix = “f”)#

使用prefix屬性,getter和setter方法會忽視屬性名的指定前綴(遵守駝峰命名)

class Demo{
    private String fid;
    private void id(String id){...}  //set
    private String id(){} //get
}

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: