Struts 2の変更を解決するには、ページにフィールドが表示されない空振り方法
1、strutsプロファイルにprepare実行時にページidを取得できないという問題を加える
2、各Actionはimplements com.opensymphony.xwork 2.Preparableである.以下の2つの方法を加える.
2番目のメソッド名prepare+保存インプリメンテーションメソッド名の変更(頭文字大文字)
3、jspページformの修正には
2、各Actionはimplements com.opensymphony.xwork 2.Preparableである.以下の2つの方法を加える.
@Override
public void prepare() throws Exception {
// TODO Auto-generated method stub
}
/**
* ,
* @throws Exception
*/
public void prepareUpdate() throws Exception {
// TODO Auto-generated method stub
if(id==null){
commodity = new Commodity();}
else{
commodity = (Commodity)commodityService.getEntity(id);
}
}
2番目のメソッド名prepare+保存インプリメンテーションメソッド名の変更(頭文字大文字)
3、jspページformの修正には