-1

打开相同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

不起作用。

4

1 回答 1

0

如果您希望能够使用不同的 id 调用它们,则需要将流程分成 2 部分。
(顺便说一句,您的流程的 ID 不必与您的视图状态相同)

flow1 (aut/nuovo-operatore-rer.xml):

<view-state id="view1" view="aut/nuovo-operatore-rer">
</view-state>

flow2 (aut/search-comune.xml):

<view-state id="view2" view="aut/nuovo-operatore-rer">
</view-state>


<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/search-comune.xml" />
于 2013-01-10T15:39:27.500 回答