您好,登录后才能下订单哦!
这篇文章主要介绍了Java的Lombok如何安装与使用,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
Lombok的安装分两部分:Idea插件的安装和maven中pom文件的导入。
点击设置,选择插件,在Idea的插件配置中搜索Lombok(需要联网)或官网下载本地安装,点击初始化安装
在插件的描述中也能够看到它支持的注解。
第二步,引入pom中依赖,当前最细版本1.18.10。
<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.10</version> </dependency>
如果是通过Idea创建Spring Boot项目,可在创建项目时直接在“Developer Tool”中选择Lombok。
完成了以上两步,就可以在代码中使用该款神器了。
这是官网给出的所支持的注解,在这我们也能查看:https://projectlombok.org/features/all
在这里给出常用的注解及其介绍:
使用val作为局部变量声明的类型,而不是实际写入类型。 执行此操作时,将从初始化表达式推断出类型。
public Map<String, String> getMap() { val map = new HashMap<String, String>(); map.put("1", "a"); return map; }
效果如下:
public Map<String, String> getMap() { HashMap<String, String> map = new HashMap(); map.put("1", "a"); return map; }
也就是说在局部变量中,Lombok帮你推断出具体的类型,但只能用于局部变量中。
@Data最常用的注解之一。注解在类上,提供该类所有属性的getter/setter方法,还提供了equals、canEqual、hashCode、toString方法。
就是开发人员不用手写相应的方法,而Lombok会帮你生成上述所有方法。
使用@Data示例如下,最直观的就是不用写getter/setter方法。
@Data public class Demo { private int id; private String remark; }
我们看该类编译之后是什么样子。
public class Demo { private int id; private String remark; public Demo() { } public int getId() { return this.id; public String getRemark() { return this.remark; public void setId(final int id) { this.id = id; public void setRemark(final String remark) { this.remark = remark; public boolean equals(final Object o) { if (o == this) { return true; } else if (!(o instanceof Demo)) { return false; } else { Demo other = (Demo)o; if (!other.canEqual(this)) { return false; } else if (this.getId() != other.getId()) { } else { Object this$remark = this.getRemark(); Object other$remark = other.getRemark(); if (this$remark == null) { if (other$remark != null) { return false; } } else if (!this$remark.equals(other$remark)) { return false; } return true; } } protected boolean canEqual(final Object other) { return other instanceof Demo; public int hashCode() { int PRIME = true; int result = 1; int result = result * 59 this.getId(); Object $remark = this.getRemark(); result = result * 59 ($remark == null ? 43 : $remark.hashCode()); return result; public String toString() { return "Demo(id=" this.getId() ", remark=" this.getRemark() ")"; }
官网给的更加详细,这里只展现一部分,例如下图是官网给的例子:
链接:https://projectlombok.org/features/Data
作用于属性上,为该属性提供getter/setter方法;
作用与类上,为该类所有的属性提供getter/setter方法, 都提供默认构造方法。
使用@Getter/@Setter示例如下:
public class GetterSetterExample { @Getter @Setter private int age = 10; @Setter(AccessLevel.PROTECTED) private String name; @Override public String toString() { return String.format("%s (age: %d)", name, age); } }
编译后就是这个样子:
public class GetterSetterExample { private int age = 10; private String name; @Override public String toString() { return String.format("%s (age: %d)", name, age); } public int getAge() { return age; public void setAge(int age) { this.age = age; protected void setName(String name) { this.name = name; }
其余例子就不展示了,大家可以去官网查看详细的,这里只给出作用。
作用于类上,为该类提供一个属性名为log的log4j日志对象。
@Log4j public class Demo { }
该属性一般使用于Controller、Service等业务处理类上。与此注解相同的还有@Log4j2,顾名思义,针对Log4j2。
作用于类上,为该类提供一个包含全部参的构造方法,注意此时默认构造方法不会提供。
@AllArgsConstructor public class Demo { private int id; private String remark; }
效果如下:
public class Demo { private int id; private String remark; public Demo(final int id, final String remark) { this.id = id; this.remark = remark; } }
作用于类上,提供一个无参的构造方法。
可以和@AllArgsConstructor同时使用,此时会生成两个构造方法:无参构造方法和全参构造方法。
作用于类上,生成equals、canEqual、hashCode方法。
具体效果参看最开始的@Data效果,也可以参考官网。
作用于属性上,提供关于此参数的非空检查,如果参数为空,则抛出空指针异常。
使用方法:
public class Demo { @NonNull private int id; private String remark; }
作用于类上,由类中所有带有@NonNull注解或者带有final修饰的成员变量作为参数生成构造方法。
作用于变量,保证该变量代表的资源会被自动关闭,默认调用资源的close()方法,如果该资源有其它关闭方法,可使用@Cleanup(“methodName”)
来指定。
public void jedisExample(String[] args) { try { @Cleanup Jedis jedis = redisService.getJedis(); } catch (Exception ex) { logger.error(“Jedis异常:”,ex) } }
效果相当于:
public void jedisExample(String[] args) { Jedis jedis= null; try { jedis = redisService.getJedis(); } catch (Exception e) { logger.error(“Jedis异常:”,ex) } finally { if (jedis != null) { try { jedis.close(); } catch (Exception e) { e.printStackTrace(); } } } }
作用于类上,生成包含所有参数的toString方法。见@Data中toString方法。
作用于类上,会生成全参数的构造方法、getter方法、equals、hashCode、toString方法。
与@Data相比多了全参构造方法,少了默认构造方法、setter方法和canEqual方法。
该注解需要注意的是:会将字段添加上final修饰,个人感觉此处有些失控,不太建议使用。
作用于方法上,相当于把方法内的代码添加了一个try-catch处理,捕获异常catch中用Lombok.sneakyThrow(e)
抛出异常。使用@SneakyThrows(BizException.class)
指定抛出具体异常。
@SneakyThrows public int getValue(){ int a = 1; int b = 0; return a/b; }
效果如下:
public int getValue() { try { int a = 1; int b = 0; return a / b; } catch (Throwable var3) { throw var3; } }
作用于类方法或实例方法上,效果与synchronized相同。
区别在于锁对象不同,对于类方法和实例方法,synchronized关键字的锁对象分别是类的class对象和this对象,而@Synchronized的锁对象分别是私有静态final对象lock和私有final对象lock。也可以指定锁对象。
public class FooExample { private final Object readLock = new Object(); @Synchronized public static void hello() { System.out.println("world"); } @Synchronized("readLock") public void foo() { System.out.println("bar"); } }
效果相当于如下:
public class FooExample { private static final Object $LOCK = new Object[0]; private final Object readLock = new Object(); public static void hello() { synchronized($LOCK) { System.out.println("world"); } } public void foo() { synchronized(readLock) { System.out.println("bar"); } }
作用于类上,如果你喜欢使用Builder的流式操作,那么@Builder可能是你喜欢的注解了。
使用方法:
@Builder public class Demo { private int id; private String remark; }
效果如下:
public class Demo { private int id; private String remark; Demo(final int id, final String remark) { this.id = id; this.remark = remark; } public static Demo.DemoBuilder builder() { return new Demo.DemoBuilder(); public static class DemoBuilder { private int id; private String remark; DemoBuilder() { } public Demo.DemoBuilder id(final int id) { this.id = id; return this; public Demo.DemoBuilder remark(final String remark) { this.remark = remark; public Demo build() { return new Demo(this.id, this.remark); public String toString() { return "Demo.DemoBuilder(id=" this.id ", remark=" this.remark ")"; }
我们可以看到,在该类内部提供了DemoBuilder类用来处理具体的流式操作。同时提供了全参的构造方法。
感谢你能够认真阅读完这篇文章,希望小编分享的“Java的Lombok如何安装与使用”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。