自定义JPA之AttributeConverter时间:2023-03-09 02:55:52 1. 执行类 public class BooleanConverter implements AttributeConverter<Boolean, Integer> { } 2. 属性注解 @Column(name = "VALID")@Convert(converter = BooleanConverter.class)