欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot~lombok使用总结

程序员文章站 2022-08-09 19:12:46
@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()方法判定为相等,从而导致出错。

修复此问题的方法很简单:

  1. 使用@getter @setter @tostring代替@data并且自定义equals(object other) 和 hashcode()方法,比如有些类只需要判断主键id是否相等即足矣。
  2. 或者使用在使用@data时同时加上@equalsandhashcode(callsuper=true)注解

tostring注解

把所有属性都写到字符里返回

@equalsandhashcode注解

  1. 此注解会生成equals(object other) 和 hashcode()方法。
  2. 它默认使用非静态,非瞬态的属性
  3. 可通过参数exclude排除一些属性
  4. 可通过参数of指定仅使用哪些属性
  5. 它默认仅使用该类中定义的属性且不调用父类的方法
  6. 可通过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