JaceyRx / Examination_System

一个简单的教务查询系统(主要技术SpringMVC + Spring + Mybatis + Shiro + Bootstrap)
1.4k stars 522 forks source link

关于删除操作未知错误的请看这里 #21

Open j252101863 opened 5 years ago

j252101863 commented 5 years ago

作者的数据库搭建没有设置外键随父级更新,所以删除操作会有外键冲突问题 这里举例学生页面的删除操作问题修改 在数据库执行以下语句 alter table selectedcourse add constraint FK_selectedcourse_student foreign key(studentID) references student(userID) on delete cascade on update cascade;

Chengbaby commented 5 years ago

对sql不太懂,能不能说说其他的怎么该

isyuanpeng commented 4 years ago

是这样的... 这个问题搞了我好几天... 我用的JPA 一开始一直在JPA里面搞级联删除 一直不行 还是要在数据库上实现级联删除和更新