打开相同jsp的spring web flow子子流状态我的代码是:
在jsp中点击按钮:
$("#formid").get(0).setAttribute('action','search-comune.htm'); $("#formid").submit();
控制器:
@RequestMapping("/aut/nuovo-operatore-rer")
public ModelMap start() {
OperatoreRerVO opVO = new OperatoreRerVO();
ModelMap model = new ModelMap();
model.addAttribute("OperatoriRer",opVO);
return model;
}
@RequestMapping(value = "/aut/search-comune", method = RequestMethod.POST)
public ModelMap searchcomune(@ModelAttribute("OperatoriRer") OperatoreRerVO opVO) {
List<Comuni> comuniList = new ArrayList <Comuni>() ;
Comuni comune = new Comuni();
String descrizione = "%"+opVO.getComune().getDescrizione().toUpperCase()+"%";
comuniList = comuniDao.selectByName(descrizione);
ModelMap model = new ModelMap();
model.addAttribute("comuniList",comuniList);
model.addAttribute("OperatoriRer",opVO);
return model;
}
流xml:
<view-state id="nuovo-operatore-rer" view="aut/nuovo-operatore-rer">
</view-state>
<view-state id="search-comune" view="aut/nuovo-operatore-rer" />
小服务程序
<webflow:flow-location id="aut/nuovo-operatore-rer" path="/WEB-INF/flows/aut/nuovo-operatore-rer.xml" />
<webflow:flow-location id="aut/search-comune" path="/WEB-INF/flows/aut/nuovo-operatore-rer.xml" />
jsp 名称:nuovo-operatore-rer.jsp
不起作用。