Is there a rule that forbids to name its entity class "User" when working with PostgreSQL and Spring Boot?
guys. I'm having a problem with a Spring boot 2.3.0 and PostgreSQL 12 project. I have an entity class I called User whose code is as follows: @Entity @NoArgsConstructor @Data @AllArgsConstructor @Builder public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String username; private String email; private String f