Jas*_*son 1 java builder intellij-idea lombok intellij-lombok-plugin
我有以下带@Builder注释的类:
@Data
@Builder(access = AccessLevel.PUBLIC)
@Entity
public class LiteProduct
{
// Minimal information required by our application.
@Id
private Long id; // Unique
private String name;
private Long costInCents;
private String type;
// Model the product types as a Hash Set in case we end up with several
// and need fast retrieval.
public final static Set<String> PRODUCT_TYPES = new HashSet<>
(Arrays.asList("flower", "topical", "vaporizer", "edible", "pet"));
// Have to allow creation of products without args for Entities.
public LiteProduct()
{
}
public LiteProduct(@NonNull final Long id, @NonNull final String name,
@NonNull final String type, @NonNull final Long costInCents)
{
if(!PRODUCT_TYPES.contains(type))
{
throw new InvalidProductTypeException(type);
}
this.name = name;
this.id = id;
this.costInCents = costInCents;
}
Run Code Online (Sandbox Code Playgroud)
每当我想使用Lombok据称为我提供的构建器类时,尽管 IDE 似乎检测到它很好:
我收到有关其可见性的编译时错误:
我已经研究过一些解决方法,例如this或this,它们似乎都暗示我的问题应该已经自动解决,并且Lombok默认情况下会生成publicBuilder 类。这似乎并没有从我的输出中暗示出来,即使我将参数放入access=AccessLevel.PUBLIC我的@Builder注释中也不会发生LiteProduct。有任何想法吗?这个类也是一个,这有什么问题吗@Entity?还有什么我没有检测到的吗?
// 编辑:我确定当我将类移动到与调用构建器模式的包相同的包中时,它工作得很好。这不是问题@Entity,而是基于我正在阅读的内容的包可见性问题不应该存在。
问题是我使用以下代码行来创建 的实例LiteProduct:
return new LiteProduct.builder().build();
Run Code Online (Sandbox Code Playgroud)
代替:
return LiteProduct.builder().build();
Run Code Online (Sandbox Code Playgroud)
这就是@Builder注释允许您执行的操作。显然builder()就像Builders 的工厂方法已经需要new你了。