main空指針報錯
? ?為什么老師給的代碼運行報錯,老是空指針報錯在main中?求大神指教。
INFO: HHH000010: On release of batch it still contained JDBC statements
Exception in thread "main" org.hibernate.exception.LockTimeoutException: could not execute statement
? ?為什么老師給的代碼運行報錯,老是空指針報錯在main中?求大神指教。
INFO: HHH000010: On release of batch it still contained JDBC statements
Exception in thread "main" org.hibernate.exception.LockTimeoutException: could not execute statement
2018-04-21
舉報
2018-04-21
在Grade.java中加入加粗的哪一行
public Grade(String gname, String gdesc) {
super();
this.students = new HashSet<Student>();
this.gname = gname;
this.gdesc = gdesc;
2018-04-29
鎖超時異常,插入數據的時候連接超時,看看你的數據庫連接地址是否正確。
正確的話你重啟一下mysql數據庫的服務試試。