課程
/后端開發(fā)
/Java
/基于SSH實(shí)現(xiàn)員工管理系統(tǒng)之案例實(shí)現(xiàn)篇
上面這樣寫在保存時(shí)不能添加部門的id
2017-02-18
源自:基于SSH實(shí)現(xiàn)員工管理系統(tǒng)之案例實(shí)現(xiàn)篇 4-2
正在回答
還是得靠自己,laozi告訴你們正解。
Employee中的Department成員變量,在使用ModelDriven之前,必須要Department department = new Department();因?yàn)闆]有實(shí)例化,所以無法對(duì)department.did賦值。
解決方法:
在Employee中添加構(gòu)造方法
public Employee(
????department = new Department();
)
就是在用之前實(shí)例化,就可以了。老師挖的坑。。
請(qǐng)問保存部門的問題解決了嗎?我現(xiàn)在也遇到了這個(gè)問題
puikiri
問題解決了嗎?rg.springframework.dao.DataIntegrityViolationException: could not insert: [com.muke.employee.domain.Employee]; SQL [insert into employee (ename, sex, birthday, joinDay, eno, username, password, dno) values (?, ?, ?, ?, ?, ?, ?, ?)]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not insert: [com.muke.employee.domain.Employee]
ID在數(shù)據(jù)庫中設(shè)的是主鍵,是自動(dòng)增長的
舉報(bào)
SSH框架整合案例之實(shí)現(xiàn)篇,手把手帶你實(shí)現(xiàn)員工管理系統(tǒng)
2 回答員工中添加部門和修改部門出錯(cuò)
1 回答添加部門的時(shí)候,參數(shù)對(duì)不上
4 回答為什么我的不管更新還是添加員工,外鍵的部門ID都是空白的!
1 回答添加員工時(shí)跳轉(zhuǎn)登錄頁面
1 回答保存新添加部門后的bug
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-07-08
還是得靠自己,laozi告訴你們正解。
Employee中的Department成員變量,在使用ModelDriven之前,必須要Department department = new Department();因?yàn)闆]有實(shí)例化,所以無法對(duì)department.did賦值。
解決方法:
在Employee中添加構(gòu)造方法
public Employee(
????department = new Department();
)
就是在用之前實(shí)例化,就可以了。老師挖的坑。。
2017-08-14
請(qǐng)問保存部門的問題解決了嗎?我現(xiàn)在也遇到了這個(gè)問題
2017-03-16
問題解決了嗎?rg.springframework.dao.DataIntegrityViolationException: could not insert: [com.muke.employee.domain.Employee]; SQL [insert into employee (ename, sex, birthday, joinDay, eno, username, password, dno) values (?, ?, ?, ?, ?, ?, ?, ?)]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not insert: [com.muke.employee.domain.Employee]
2017-03-08
ID在數(shù)據(jù)庫中設(shè)的是主鍵,是自動(dòng)增長的