I am writing a web application and when declaring entities I use breakdown. The application compiles and works properly, but in the code, where the work with the entities of the idea takes place all emphasizes and considers an error. For example, on the jsp page, I print in a loop information about the entity - it does not see the object fields. In the controller emphasizes the creation of the object (constructors). You can somehow suppress these errors, because Do they arise because the breakdown has not yet worked? Entity code:

 @Entity @Table(name = "users") @Data @NoArgsConstructor @AllArgsConstructor @FieldDefaults(level = AccessLevel.PRIVATE) public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) long id; @Column(name = "name") String name; @Column(name = "password") String password; @Column(name = "email") String email; public User(String name, String password, String email) { this.name = name; this.password = password; this.email = email; } } 

0