1. 程式人生 > >Hibernate+struct web項目問題總結

Hibernate+struct web項目問題總結

web Coding TP hbm rac pin ram nco tab

問題一:

 ClassTable is not mapped [from ClassTable]

解決辦法:在添加資源路徑

<mapping resource="***/***/***/***/ClassTable.hbm.xml"/>

***為包名

問題二:寫刪除功能時jsp傳ID值到action中,由於含有中文導致亂碼,設置request.setCharacterEncoding("UTF-8");也無濟於事,

解決辦法:

String Cid = new String(request.getParameter("Cid").getBytes("iso-8859-1"),"UTF-8");

將傳過來的值通過轉碼解決

Hibernate+struct web項目問題總結