赞
踩
实际开发中,每个实体类都需要添加get和set方法。
public class UserEntity { private Long id; private String name; private int age; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } }
这样大大影响代码可读性,因此可以用lombok下的@Getter和@Setter注解进行代替。
解决方案如下
1.pom文件引入jar包
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.12</version>
</dependency>
此时还不能应用注解,看步骤2
2.idea 下载lombok插件
setting->plugins
3.引入@Getter和@Setter注解即可
@Getter
@Setter
public class UserEntity {
private Long id;
private String name;
private int age;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。