本文介绍了springboot优雅编码之lombok加持,分享给大家,具体如下:
概述
lombok 通过提供简单的语法注解形式来帮助简化消除一些必须有但显得很臃肿的 java 代码。典型的是对于 pojo对象的简化(如自动帮我们生成setter和getter等),有了lombok的加持,开发人员可以免去很多重复且臃肿的操作,极大地提高java代码的信噪比,因此我们必须尝试并应用起来!
intellij idea上配置
方法一:直接在idea界面中配置
首先进入plugins界面:
然后搜索并安装lombok插件:
最后不要忘了开启annotation processors的enable选项:
上述安装完成以后需要重启idea生效!
方法二:手动下载lombok插件安装
有时由于网络原因,上面方法一这种方式安装失败,因此只能手动下载安装
下载lombok插件:
https://github.com/mplushnikov/lombok-intellij-plugin/releases
plugins -> install plugin from disk... 选择下载的zip包安装
重启idea即可
ide中设置完成以后需要在pom.xml中添加如下所示的lombok依赖才能使用
1
2
3
4
5
|
<dependency> <groupid>org.projectlombok</groupid> <artifactid>lombok</artifactid> <version> 1.16 . 16 </version> </dependency> |
lombok主要注解
-
@getter and @setter
/ 自动为属性提供 set和get 方法 -
@tostring
/ 该注解的作用是为类自动生成tostring()方法 -
@equalsandhashcode
/ 为对象字段自动生成hashcode和equals实现 -
@allargsconstructor, @requiredargsconstructor and @noargsconstructor
/ 顾名思义,为类自动生成对应参数的constructor -
@log, @log4j, @log4j2, @slf4j, @xslf4j, @commonslog, @jbosslog
/ 自动为类添加对应的log支持 -
@data
/ 自动为所有字段添加@tostring, @equalsandhashcode, @getter,为非final字段添加@setter,和@requiredargsconstructor,本质上相当于几个注解的综合效果 -
@nonnull
/ 自动帮助我们避免空指针。作用在方法参数上的注解,用于自动生成空值参数检查 -
@cleanup
/ 自动帮我们调用close()方法。作用在局部变量上,在作用域结束时会自动调用close方法释放资源
下文就lombok中用的最为频繁的@data
和@log
注解进行代码实战!
@data注解使用
官网关于@data注解的解释如下:
all together now: a shortcut for @tostring, @equalsandhashcode, @getter on all fields, @setter on all non-final fields, and @requiredargsconstructor!
不难理解,其可以看成是多个lombok注解的集成,因此使用很方便!
先来创建一个pojo实体userlombok,普通的写法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
public class userlombok { private final string name; private int age; private double score; private string[] tags; public userlombok(string name) { this .name = name; } public string getname() { return this .name; } void setage( int age) { this .age = age; } public int getage() { return this .age; } public void setscore( double score) { this .score = score; } public double getscore() { return this .score; } public string[] gettags() { return this .tags; } public void settags(string[] tags) { this .tags = tags; } @override public string tostring() { return "dataexample(" + this .getname() + ", " + this .getage() + ", " + this .getscore() + ", " + arrays.deeptostring( this .gettags()) + “)”; } protected boolean canequal(object other) { return other instanceof dataexample; } @override public boolean equals(object o) { if (o == this ) return true ; if (!(o instanceof dataexample)) return false ; dataexample other = (dataexample) o; if (!other.canequal((object) this )) return false ; if ( this .getname() == null ? other.getname() != null : ! this .getname().equals(other.getname())) return false ; if ( this .getage() != other.getage()) return false ; if ( double .compare( this .getscore(), other.getscore()) != 0 ) return false ; if (!arrays.deepequals( this .gettags(), other.gettags())) return false ; return true ; } @override public int hashcode() { final int prime = 59 ; int result = 1 ; final long temp1 = double .doubletolongbits( this .getscore()); result = (result*prime) + ( this .getname() == null ? 43 : this .getname().hashcode()); result = (result*prime) + this .getage(); result = (result*prime) + ( int )(temp1 ^ (temp1 >>> 32 )); result = (result*prime) + arrays.deephashcode( this .gettags()); return result; } } |
lombok加持后,写法可简化为:
1
2
3
4
5
6
7
|
@data public class userlombok { private final string name; private int age; private double score; private string[] tags; } |
在idea中使用时,lombok的注解会自动补全,如下图所示:
我们来写pojo的测试代码
1
2
3
4
5
6
7
8
|
public static void main( string[] args ) { userlombok userlombok = new userlombok("hansonwang99”); userlombok.setage( 18 ); string[] array = new string[]{ "apple" ,"juice”}; userlombok.settags( array ); userlombok.setscore( 99.0 ); system.out.println(userlombok); } |
由下图我们可以看到idea依然可以自动为我们补全由lombok自动生成的代码:
结果打印
由于lombok为我们自动生成了tostring方法,因此对象的打印结果如下:
1
|
userlombok(name=hansonwang99, age= 18 , score= 99.0 , tags=[apple, juice]) |
@log注解实战
在我的文章 spring boot日志框架实践 一文中,我们使用log4j2来作为日志对象,其写法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@restcontroller @requestmapping ("/testlogging”) public class loggingtestcontroller { private final logger logger = logmanager.getlogger( this .getclass()); @getmapping ("/hello”) public string hello() { for ( int i= 0 ;i<10_0000;i++){ logger.info("info execute index method”); logger.warn("warn execute index method”); logger.error("error execute index method”); } return "my first springboot application”; } } |
若改用lombok后,写法变得更加简洁,我们只需要引入对应的@log注解即可完成log对象的生成:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@restcontroller @requestmapping ("/testloggingwithlombok”) @log4j2 public class loggingtestcontrollerlombok { @getmapping ("/hello”) public string hello() { for ( int i= 0 ;i<10_0000;i++){ log.info("info execute index method”); log.warn("warn execute index method”); log.error("error execute index method”); } return "my first springboot application”; } } |
怎么样,是不是一切都是那么地优雅!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://segmentfault.com/a/1190000014247338