[工具插件] 简单粗暴节省JavaBean代码插件 Lombok.jar

什么是Lombok?

我称呼它为小辣椒.其实是红色的.

它能干什么?

我给你讲你不要告诉别人,看他们写JavaBean累死累活的生成 getter/setter/toString等等
不过要是同一个项目,还是要统一规范滴

不多xx,步入正题

首先 @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.

默默百度翻译一下:

Lombok是一个Java库,能自动插入编辑器并构建工具,简化Java开发.
通过添加注解的方式,不需要为类编写getter或eques方法,同时可以自动化日志变量.

简而言之:Lombok能以简单的注解形式来简化java代码,提高开发人员的开发效率

那么怎么用?

使用Lombok需要的开发环境Java+Maven+IntelliJ IDEA或者Eclipse(安装Lombok Plugin)

现在我们来操作一下Eclipse里面安装

第一步:
下载这个插件,只要有个这个lombok.jar就ok 这个位置可以随便放,安装之后自动就放安装的eclipse根路径下了


Lombok.jar

第二步:
我们来操作命令行,如下:
1.win+R输入cmd进入命令行


win+R输入cmd进入命令行

2.上如图
需要的操作

找到之后,回车,就有了这个界面
安装界面

然后上面的框框就是你的 eclipse.exe 地址 如果有多个eclipse 自己选一下就ok
然后 快速安装,在右下角 然后就搞定了
3.怎么判断是否安装好了


看图安装好了

我这儿可以直接在右边打开,小伙伴也可以选中文件右键,使用记事本打开.也是一样的如图
记事本打开

这就安装好了
现在我们来爽一下
4.如图:
先导jar包
然后 build path
然后贴标签
看一下右边的视图 都有了,是不是很简洁
爽一把

现在来看一下代码的区别:
不使用Lombok

package cn.icanci.test_151;

import lombok.Data;

/**
 * @author icanci
 * @projectName 151
 * @packageName cn.icanci.test_151
 * @version 1.10
 * @time 2020年1月4日 下午6:33:26
 * @classAction test
 */
public class User {
    private Integer id;
    private String username;
    private String password;
    private String address;
    private String phone;
    private String email;
    /**
     * @return the id
     */
    public Integer getId() {
        return id;
    }
    /**
     * @param id the id to set
     */
    public void setId(Integer id) {
        this.id = id;
    }
    /**
     * @return the username
     */
    public String getUsername() {
        return username;
    }
    /**
     * @param username the username to set
     */
    public void setUsername(String username) {
        this.username = username;
    }
    /**
     * @return the password
     */
    public String getPassword() {
        return password;
    }
    /**
     * @param password the password to set
     */
    public void setPassword(String password) {
        this.password = password;
    }
    /**
     * @return the address
     */
    public String getAddress() {
        return address;
    }
    /**
     * @param address the address to set
     */
    public void setAddress(String address) {
        this.address = address;
    }
    /**
     * @return the phone
     */
    public String getPhone() {
        return phone;
    }
    /**
     * @param phone the phone to set
     */
    public void setPhone(String phone) {
        this.phone = phone;
    }
    /**
     * @return the email
     */
    public String getEmail() {
        return email;
    }
    /**
     * @param email the email to set
     */
    public void setEmail(String email) {
        this.email = email;
    }
    @Override
    public String toString() {
        return "User [id=" + id + ", username=" + username + ", password=" + password + ", address=" + address
                + ", phone=" + phone + ", email=" + email + "]";
    }
    
}

使用之后:

package cn.icanci.test_151;

import lombok.Data;

/**
 * @author icanci
 * @projectName 151
 * @packageName cn.icanci.test_151
 * @version 1.10
 * @time 2020年1月4日 下午6:33:26
 * @classAction 
 */
@Data
public class User {
    private Integer id;
    private String username;
    private String password;
    private String address;
    private String phone;
    private String email;
}

一个标签搞定

现在看一下反编译之后的代码:
package cn.icanci.test_151;

public class User {
    private Integer id;
    private String username;
    private String password;
    private String address;
    private String phone;
    private String email;

    public String toString() {
        return "User(id=" + getId() + ", username=" + getUsername() + ", password=" + getPassword() + ", address="
                + getAddress() + ", phone=" + getPhone() + ", email=" + getEmail() + ")";
    }

    public int hashCode() {
        int PRIME = 59;
        int result = 1;
        Object $id = getId();
        result = result * 59 + ($id == null ? 43 : $id.hashCode());
        Object $username = getUsername();
        result = result * 59 + ($username == null ? 43 : $username.hashCode());
        Object $password = getPassword();
        result = result * 59 + ($password == null ? 43 : $password.hashCode());
        Object $address = getAddress();
        result = result * 59 + ($address == null ? 43 : $address.hashCode());
        Object $phone = getPhone();
        result = result * 59 + ($phone == null ? 43 : $phone.hashCode());
        Object $email = getEmail();
        result = result * 59 + ($email == null ? 43 : $email.hashCode());
        return result;
    }

    protected boolean canEqual(Object other) {
        return other instanceof User;
    }

    public boolean equals(Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof User)) {
            return false;
        }
        User other = (User) o;
        if (!other.canEqual(this)) {
            return false;
        }
        Object this$id = getId();
        Object other$id = other.getId();
        if (this$id == null ? other$id != null : !this$id.equals(other$id)) {
            return false;
        }
        Object this$username = getUsername();
        Object other$username = other.getUsername();
        if (this$username == null ? other$username != null : !this$username.equals(other$username)) {
            return false;
        }
        Object this$password = getPassword();
        Object other$password = other.getPassword();
        if (this$password == null ? other$password != null : !this$password.equals(other$password)) {
            return false;
        }
        Object this$address = getAddress();
        Object other$address = other.getAddress();
        if (this$address == null ? other$address != null : !this$address.equals(other$address)) {
            return false;
        }
        Object this$phone = getPhone();
        Object other$phone = other.getPhone();
        if (this$phone == null ? other$phone != null : !this$phone.equals(other$phone)) {
            return false;
        }
        Object this$email = getEmail();
        Object other$email = other.getEmail();
        return this$email == null ? other$email == null : this$email.equals(other$email);
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getEmail() {
        return this.email;
    }

    public String getPhone() {
        return this.phone;
    }

    public String getAddress() {
        return this.address;
    }

    public String getPassword() {
        return this.password;
    }

    public String getUsername() {
        return this.username;
    }

    public Integer getId() {
        return this.id;
    }
}

说明@Data注解在类上,会为类的所有属性自动生成setter/getter equals canEqual hashCode,toString方法,如为final属性,则不会为该属性生成setter方法.

常用的注解

@Setter 注解在类或字段,注解在类时为所有字段生成setter方法,注解在字段上时只为该字段生成setter方法
@Getter 使用方法同上,区别在于生成的是getter方法
@ToString 注解在类,添加toString方法
@EqualsAndHashCode 注解在类,生成hashCode和equals方法
@NoArgsConstructor 注解在类,生成无参的构造方法
@RequiredArgsConstructor 注解在类,为类中需要特殊处理的字段生成构造方法,比如final和被@NonNull注解的字段
@AllArgsConstructor 注解在类,生成包含类中所有字段的构造方法
@Data 注解在类,生成setter/getter,equals,canEqual,hashCode,toString方法,如为final属性,则不会为该属性生成setter方法,
@Slf4j 注解在类,生成log变量,严格意义来说是常量.private static final Logger log = LoggerFactory.getLogger(UserController.class);

Lombok的优缺点

优点:
能通过注解的形式自动生成构造器、getter/setter、equals、hashcode、toString等方法,提高了一定的开发效率
让代码变得简洁,不用过多的去关注相应的方法
属性做修改时,也简化了维护为这些属性所生成的getter/setter方法等
缺点:
不支持多种参数构造器的重载
虽然省去了手动创建getter/setter方法的麻烦,但大大降低了源代码的可读性和完整性,降低了阅读源代码的舒适度

现在我们来操作一下idea里面安装

1.下载插件 File>Setting>Plugins>搜索Lombok


进入Setting

下载

安装之后重启一下,然后maven项目添加依赖:

 <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.8</version>
            <scope>provided</scope>
        </dependency>

然后就可以和eclipse一起使用了.

注意:

同一个项目组必须同样的环境,要根据实际开发而来.

结尾bb一下

欢迎交流: @小猪童鞋QQ聊天链接 一起学习呀

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,001评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,210评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,874评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,001评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,022评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,005评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,929评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,742评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,193评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,427评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,583评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,305评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,911评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,564评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,731评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,581评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,478评论 2 352

推荐阅读更多精彩内容