lombok注解

2021-10-31

java

秣秩斯干,幽幽南山。如竹苞矣,如松茂矣。——《诗经》

首先是官方文档,列举了所有注解

常用的我就不聊了,这里上代码聊聊不咋常用的

首先是@Cleanup注解,能够自动关闭流

1
2
3
4
5
6
7
8
9
10
11
12
13
public static String readFile(File file) throws Exception {
StringBuilder builder = new StringBuilder();
@Cleanup InputStream is = new FileInputStream(file);
String line;
@Cleanup BufferedReader reader = new BufferedReader(new InputStreamReader(is));
line = reader.readLine();
while (line != null) {
builder.append(line);
builder.append("\n");
line = reader.readLine();
}
return builder.toString();
}

最后生成的代码:

image-20211031150154435

然后是@NonNull注解,加到我们的参数上

image-20211031152056995

就会自动生成如下代码:

image-20211031152114451

如果@NonNull加在属性上,也会在之后生成的setter判空

接下来是@RequiredArgsConstructor注解,它可以生成一个静态构造函数,效果如下:

image-20211031155119767

@Value注解和@RequiredArgsConstructor注解差不多

image-20211031162434158

生成效果如下:

image-20211031162420815

对于@Singular注解,它可以和@Builder建造者模式配合使用,针对List等集合类型的属性生成对应的操作函数

image-20211031155941783

效果如下:

image-20211031160131489

下面是@SneakyThrows,简单来讲就是再加一个try-catch,避免编译时异常导致编译失败

image-20211031160322667

生成的代码:

image-20211031160542913

以及@Synchronized注解

image-20211031160755210

image-20211031160740481

以及var

image-20211031161427843

生成:

image-20211031161441024

然后是val

image-20211031161819523

生成:

image-20211031161859829

@With注解的话放在属性上面:

image-20211031162122731

可以生成以下代码:

image-20211031162139878

还有一个能获取到泛型内的类型,生成能直接调用该类型中对应方法的函数

image-20211031163206886

生成下面这部分:

image-20211031163257243

剩下的experimental包里的注解我们下次再叙吧