在 Spring 引导应用程序中创建实体时出错
Error While Creating Entities in Spring boot application
我一直在尝试在我的 spring 应用程序中创建一个继承其他 class 内容的实体。我希望继承的 class 的字段保留在数据库中,但都是徒劳的。我也在使用龙目岛。我是不是做错了什么?
Child class:
@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
public class UserDetails extends Users{
@Id
Long uId;
String description;
String postalAddress;
Long postalCode;
}
Parent class:
public class Users {
Long userId;
String username;
String email;
String password;
}
Class 用户也将是一个实体,但它没有使用相同的“@Entity”进行注释。此外,您可能必须为父 class.
提供 @Inheritance 注释
参考 - https://blog.netgloo.com/2014/12/18/handling-entities-inheritance-with-spring-data-jpa/
我一直在尝试在我的 spring 应用程序中创建一个继承其他 class 内容的实体。我希望继承的 class 的字段保留在数据库中,但都是徒劳的。我也在使用龙目岛。我是不是做错了什么?
Child class:
@Entity
@Data
@NoArgsConstructor
@AllArgsConstructor
public class UserDetails extends Users{
@Id
Long uId;
String description;
String postalAddress;
Long postalCode;
}
Parent class:
public class Users {
Long userId;
String username;
String email;
String password;
}
Class 用户也将是一个实体,但它没有使用相同的“@Entity”进行注释。此外,您可能必须为父 class.
提供 @Inheritance 注释参考 - https://blog.netgloo.com/2014/12/18/handling-entities-inheritance-with-spring-data-jpa/