Spring全家桶系列--SpringBoot漸入佳境
標簽:
SpringBoot
1.Lombok插件
对于开发人员来说,我要解释这个什么意思,你肯定也是一知半解,直接来代码解释吧
1.1 代码演示
package com.example.entity;public class Area { private Integer id; private Integer postalcode; private String address; private Integer type; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getPostalcode() { return postalcode; } public void setPostalcode(Integer postalcode) { this.postalcode = postalcode; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address == null ? null : address.trim(); } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; }}
使用了Lombok之后
package com.example.entity;import lombok.Data;@Datapublic class Area { private Integer id; private Integer postalcode; private String address; private Integer type;}
以上两者的效果是相同的,现在我们知道它是干嘛的了,下面开始使用吧
1.2 安装Lombok
在Intellij IDEA中安装lombok插件
安装完重启IDEA
打开设置找到上述并勾选,然后在build.gradle文件中增加
//让gradle具有内置的compileOnly范围,可用于告诉gradle仅在编译期间添加lombokcompileOnly 'org.projectlombok:lombok:1.18.4'
點擊查看更多內(nèi)容
為 TA 點贊
評論
評論
共同學(xué)習(xí),寫下你的評論
評論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦