所以,我目前正在尝试使用 thymeleaf 在我的数据库中建立另一个关系。从那时起,如果没有阻止代码工作的问题,我就无法启动它我的对象不在下面似乎有问题,即使如此,他们也没有理由这样做@Entity 公共类缺席{@Id@GeneratedValue(strategy = GenerationType.IDENTITY)private Integer id;@OneToMany(mappedBy="Absence", cascade = CascadeType.ALL)public Set<Vacation> vacations;}并且,如果它可能有帮助,这是我想链接到缺席对象的对象 Vacation@Entitypublic class Vacation { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; //private int userId; private Date startVacation; private Date endVacation; @ManyToOne private Absence absence; @ManyToOne private User user;}我已经授予我的用户访问表/创建它的权利并搜索依赖项的问题,但这似乎都不是问题
添加回答
举报
0/150
提交
取消