共计 1537 个字符,预计需要花费 4 分钟才能阅读完成。
lombok 简介
lombok 是 java 开发的神器,使用注解让实体类 pojo 还有日志 slf4j 操作特别方便。
lombok 使用方式
(1)idea 中使用 lombok 工具,需要安装 lombok 插件。大家 plugins 搜索 lombok 安装即可,不然,使用 lombok 会报错。
(2)在 Java 项目的 pom 文件中添加依赖,使用注解就可以了。
注解介绍
(1) @Getter/@Setter 注解可以针对类的属性字段自动生成 Get/Set 方法。
public class Pojo{
@Setter
@Getter
private String name;
// 其他代码……
}
(2) @ToString 注解,为使用该注解的类生成一个 toString 方法
@ToString
public class Pojo {private String name;}
(3)@EqualsAndHashCode 注解,为使用该注解的类自动生成 equals 和 hashCode 方法
@EqualsAndHashCode
public class Pojo {private String name;}
(4) @NoArgsConstructor, @RequiredArgsConstructor, @AllArgsConstructor, 这几个注解分别为类自动生成了无参构造器、指定参数的构造器和包含所有参数的构造器。
@NoArgsConstructor
@AllArgsConstructor
public class Pojo {private String name;}
(5)@Data 注解作用比较全,其包含注解的集合 @ToString,@EqualsAndHashCode,所有字段的 @Getter 和所有非 final 字段的 @Setter, @RequiredArgsConstructor。其示例代码可以参考上面几个注解的组合。
* @see Getter
* @see Setter
* @see RequiredArgsConstructor
* @see ToString
* @see EqualsAndHashCode
* @see lombok.Value
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface Data {
/**
* If you specify a static constructor name, then the generated constructor will be private, and
* instead a static factory method is created that other classes can use to create instances.
* We suggest the name: "of", like so:
*
* <pre>
* public @Data(staticConstructor = "of") class Point {final int x, y;}
* </pre>
*
* Default: No static constructor, instead the normal constructor is public.
*
* @return Name of static 'constructor' method to generate (blank = generate a normal constructor).
*/
String staticConstructor() default "";}
(6)@Builder 注解使用建造者模式,为制定参数赋值
@Builder
public class Pojo {private String name;}
使用起来非常的方便,满足日常的工作需要。
有问题,请留言!
个人博客地址 https://blog.ailijie.top/arch…
正文完
发表至: java
2019-07-26