Java ——Lombok的导入与使用
1.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, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.
百度解释:
Project Lombok 是一个 Java 库,它会自动插入编辑器和构建工具,为您的 Java 增添趣味。
永远不要再写另一个 getter 或 equals 方法,使用一个注释,您的类有一个功能齐全的构建器,自动化您的日志记录变量等等。
2.Lombok的作用是什么?
简单来说就是将我们的代码更加的规范和整洁 让我们的效率大大的提高
例如以下Java代码:(没用Lombok之前)
public class Student {
int sid;
String name;
String sex;;
public Integer getSid() {
return sid;