Lombok笔记

Lombok库详解
本文介绍了Lombok库的基本概念,展示了@Data注解的源码,并详细解释了Lombok中常用的注解,如@NonNull、@Cleanup、@Getter/@Setter等。通过实例演示了如何使用这些注解简化Java代码。

一、Lombok简介

  Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again. Early access to future java features such as val, and much more.

官网:https://projectlombok.org/

github:https://github.com/rzwitserloot/lombok

 

二、Lombok @Data源码

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.SOURCE)
public @interface Data {
    String staticConstructor() default "";
}

a. ElementType.TYPE:说明该注解只能被声明在一个类前。

b. RetentionPolicy.SOURCE  : 注解只保留在源文件中 

 

三、Lombok常用注解介绍

a.  @NonNull

b.  @Cleanup -  Automatic resource management: Call your close() methods safely with no hassle.

c.  @Getter/@Setter -  Never write public int getFoo() {return foo;} again

d.  @ToString -  No need to start a debugger to see your fields: Just let lombok generate a toString for you!

e.  @EqualsAndHashCode -  Equality made easy: Generates hashCode and equals implementations from the fields of your object..

f.  @NoArgsConstructor, @RequiredArgsConstructor and @AllArgsConstructor -  Constructors made to order: Generates constructors that take no arguments, one argument per final / non-nullfield, or one argument for every field.

g.  @Data -  All together now: A shortcut for @ToString, @EqualsAndHashCode, @Getter on all fields, and @Setter on all non-final fields, and @RequiredArgsConstructor!

h.  @Synchronized -  synchronized done right: Don't expose your locks.

 

四、举例

@Data
@NoArgsConstructor
@AllArgsConstructor
public class LombokForm {

    private String name;
    private int age;

}

 

public class LombokTest {

    @Test
    public void test() {

        String defaultName = "aaa";
        int defaultAge = 10;

        LombokForm lombokForm = new LombokForm(defaultName, defaultAge);
        String str = lombokForm.toString();

        String name = lombokForm.getName();
        int age = lombokForm.getAge();

        System.out.println(lombokForm.toString());
        Assert.assertEquals(defaultName, name);
        Assert.assertEquals(defaultAge, age);

    }
}

  

五、参考

a. https://www.jianshu.com/p/365ea41b3573

b. https://blog.youkuaiyun.com/cb905259982/article/details/73161948

c. https://projectlombok.org/

  

 

 

 

 

转载于:https://www.cnblogs.com/maduar/p/9434336.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值