gpt4 book ai didi

java - 无法在我的测试类: modifier static not allowed here中创建Lombok类

转载 作者:行者123 更新时间:2023-12-01 10:48:51 25 4
gpt4 key购买 nike

我想在测试类中创建一个Lombok类

@RunWith(SpringRunner.class)
@SpringBootTest
public class HostelIntegrationTest {


@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(NON_NULL)
@EqualsAndHashCode
class User {
String property1;
Instant property2;
Integer property3;
}

但是我得到这个编译错误:

modifier static not allowed here

最佳答案

@Builder在内部创建static内部类。
问题可能是非静态内部类中的静态内部类。

尝试使User也成为static

//other annotations
@Builder
static class User {
String property1;
Instant property2;
Integer property3;
}

关于java - 无法在我的测试类: modifier static not allowed here中创建Lombok类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59785541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com