springboot~lombok使用总结
程序员文章站
2022-04-15 11:13:37
@Getter & @Setter 生成getter和setter块 @Data注解 @Data相当于@Getter @Setter @RequiredArgsConstructor @ToString @EqualsAndHashCode这5个注解的合集。 通过官方文档,可以得知,当使用@Data ......
@getter & @setter
生成getter和setter块
@data注解
@data相当于@getter @setter @requiredargsconstructor @tostring @equalsandhashcode这5个注解的合集。
通过官方文档,可以得知,当使用@data注解时,则有了@equalsandhashcode注解,那么就会在此类中存在equals(object other) 和 hashcode()方法,且不会使用父类的属性,这就导致了可能的问题。
比如,有多个类有相同的部分属性,把它们定义到父类中,恰好id(数据库主键)也在父类中,那么就会存在部分对象在比较时,它们并不相等,却因为lombok自动生成的equals(object other) 和 hashcode()方法判定为相等,从而导致出错。
修复此问题的方法很简单:
- 使用@getter @setter @tostring代替@data并且自定义equals(object other) 和 hashcode()方法,比如有些类只需要判断主键id是否相等即足矣。
- 或者使用在使用@data时同时加上@equalsandhashcode(callsuper=true)注解
tostring注解
把所有属性都写到字符里返回
@equalsandhashcode注解
- 此注解会生成equals(object other) 和 hashcode()方法。
- 它默认使用非静态,非瞬态的属性
- 可通过参数exclude排除一些属性
- 可通过参数of指定仅使用哪些属性
- 它默认仅使用该类中定义的属性且不调用父类的方法
- 可通过callsuper=true解决上一点问题。让其生成的方法中调用父类的方法。
@entity
[@entity]
必须与@id注解 结合使用
否则 no identifier specified for entity:
name 属性
(可选)实体名称。 缺省为实体类的非限定名称。
该名称用于引用查询中的实体。
该名称不能是java持久性查询语言中的保留字面值。
不与@table结合的话 表名 默认为 snakecasestrategy(命名策略 )为表名
若使用 name属性 且没有与@table结合 则表名为 name值的snakecasestrategy(命名策略 )
例如:
@entity public class userentity{...} 表名 user_entity @entity(name="ue") public class userentity{...} 表名 ue @entity(name="usentity") public class userentity{...} 表名 us_entity
上一篇: C++里的继承和多态(上)
下一篇: MySQL前缀索引和索引选择性
推荐阅读
-
springboot使用hibernate validator校验方式
-
SpringBoot Admin 使用指南(推荐)
-
SpringBoot 中 AutoConfiguration的使用方法
-
在SpringBoot中使用Logback管理记录日志
-
SpringBoot入坑笔记之spring-boot-starter-web 配置文件的使用
-
springboot下使用mybatis的方法
-
Symfony2使用Doctrine进行数据库查询方法实例总结
-
android WebView组件使用总结
-
Python中operator模块的操作符使用示例总结
-
java8使用Stream API方法总结