1. 程式人生 > >2017.6.29小學期2

2017.6.29小學期2

exce 參數化 upd align 參考 沒有 strong entity logs

技術分享

這幾天跟著老師在myeclipse上敲代碼和數據庫相連實現從後臺到前端網頁上呈現出上圖的效果。

將無理的狀態用幾者的聯系實現。

將table映射成代碼。

泛型:參數化類型。

問題:

技術分享

技術分享

在從後臺到前端的時候網頁上輸入數據保存之後出現了如上圖的錯誤:即:

java.lang.IllegalArgumentException: attempt to create saveOrUpdate event with null entity

在參考百度和聯系我自己的代碼過後發現是我的custSave.jsp中編寫文本框客戶編號和客戶名字時沒有指明對象,參數沒有傳遞進去。

原錯:

<s:textfield name="custno" label="客戶編號"></s:textfield>
<s:textfield name="custname" label="客戶名字"></s:textfield>

改後:

<s:textfield name="cust.custno" label="客戶編號"></s:textfield>
<s:textfield name="cust.custname" label="客戶名字"></s:textfield>

即:

技術分享

2017.6.29小學期2