您好,登錄后才能下訂單哦!
這篇文章主要講解了“lombok的介紹和使用方式”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“lombok的介紹和使用方式”吧!
lombok是java開發的神器,使用注解讓實體類pojo還有日志slf4j操作特別方便。
(1)idea中使用lombok工具,需要安裝lombok插件。大家plugins搜索lombok安裝即可,不然,使用lombok會報錯。 (2)在Java項目的pom文件中添加依賴,使用注解就可以了。
(1) @Getter/@Setter注解可以針對類的屬性字段自動生成Get/Set方法。
public class Pojo{ @Setter [@Getter](https://my.oschina.net/u/3288663) private String name; //其他代碼…… }
(2) @ToString注解,為使用該注解的類生成一個toString方法
@ToString public class Pojo { private String name; }
(3)@EqualsAndHashCode注解,為使用該注解的類自動生成equals和hashCode方法
@EqualsAndHashCode public class Pojo { private String name; }
(4) @NoArgsConstructor, @RequiredArgsConstructor, @AllArgsConstructor,這幾個注解分別為類自動生成了無參構造器、指定參數的構造器和包含所有參數的構造器。
@NoArgsConstructor @AllArgsConstructor public class Pojo { private String name; }
(5)@Data注解作用比較全,其包含注解的集合@ToString,@EqualsAndHashCode,所有字段的@Getter和所有非final字段的@Setter, @RequiredArgsConstructor。其示例代碼可以參考上面幾個注解的組合。
* @see Getter * @see Setter * @see RequiredArgsConstructor * @see ToString * @see EqualsAndHashCode * @see lombok.Value */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface Data { /** * If you specify a static constructor name, then the generated constructor will be private, and * instead a static factory method is created that other classes can use to create instances. * We suggest the name: "of", like so: * * <pre> * public @Data(staticConstructor = "of") class Point { final int x, y; } * </pre> * * Default: No static constructor, instead the normal constructor is public. * * @return Name of static 'constructor' method to generate (blank = generate a normal constructor). */ String staticConstructor() default ""; }
(6)@Builder注解使用建造者模式,為制定參數賦值
@Builder public class Pojo { private String name; }
使用起來非常的方便,滿足日常的工作需要。
感謝各位的閱讀,以上就是“lombok的介紹和使用方式”的內容了,經過本文的學習后,相信大家對lombok的介紹和使用方式這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。