0

私はSpring MVCアプリケーションを作成し、ビューに速度テンプレートを使用しています。データで入力するためのフォームがあり、このフォームでは#springFormSingleSelect.Formを使用しています。データが有効な場合は正常に機能しますが、フォームが無効なデータで埋められている場合エラーのあるメッセージがありますが、 #springFormSingleSelect は空です。それが私の見解です:

<form action="saveEmployee" method="POST">
                #springBind("newEmployee")
            <a href="listEmployees">#springMessage("label.back")</a>
            <p>
            <table>                
                <tr>
                    <td>#springMessage("label.firstName")</td>
                    <td>#springFormInput("newEmployee.firstName" "")</td>
                    <td><font color="red">#springShowErrors("&nbsp" "")</font></td>
                </tr>
                <tr>
                    <td>#springMessage("label.lastName")</td>
                    <td>#springFormInput("newEmployee.lastName" "")</td>
                    <td><font color="red">#springShowErrors("&nbsp" "")</font></td>
                </tr>
                <tr>
                    <td>#springMessage("label.salary")</td>
                    <td>#springFormInput("newEmployee.salary" "")</td>
                    <td><font color="red">#springShowErrors("&nbsp" "")</font></td>
                </tr>
                <tr>
                    <td>#springMessage("label.birthdate")</td>
                    <td>#springFormInput("newEmployee.birthday" "")</td>
                    <td><font color="red">#springShowErrors("&nbsp" "")</font></td>
                </tr>
                <tr>
                    <td>#springMessage("label.departament")</td>
                    <td>#springFormSingleSelect("newEmployee.departamentId" $departamentsMap "")</td>
               </tr>

            </table>
                    <input type="submit" value="#springMessage("label.submit")">
        </form>

これは、ビューに対するコントローラーの一部です。

@RequestMapping(value="/saveEmployee", method= RequestMethod.GET)
    public ModelAndView newuserForm(){
        ModelAndView model = new ModelAndView("newEmployee");
        Employee empl = new Employee();

        Map departamentsMap = new TreeMap();
        List<Departament> departamentsList = service.listDepartaments();

        //for singleselect of departaments
        for(int i=0; i<departamentsList.size(); i++){
            Departament dep = departamentsList.get(i);
            departamentsMap.put(dep.getDepartamentId(),dep.getTitle() );
        }                    
        model.addObject("departamentsMap",departamentsMap);

        model.getModelMap().put("newEmployee", empl);
        return model;
    }

    @RequestMapping(value="/saveEmployee", method=RequestMethod.POST)
    public String create(@ModelAttribute("newEmployee")Employee empl, BindingResult result){

        employeeValidator.validate(empl, result);
        if(result.hasErrors()){
            return "newEmployee";
        }
        service.saveEmployee(empl);
        return "redirect:/listEmployees";
    }

多分誰かがその行動の理由を知っていますか?

4

1 に答える 1

0

DepartmentsMap は Error 時に null です... ので、model.addObject("departamentsMap",departamentsMap); を追加してください。あなたの投稿の詳細では、エラーが発生した場合、それはnullであってはなりません。

//Modified this line of code..


if(result.hasErrors()){
        Map departamentsMap = new TreeMap();
        List<Departament> departamentsList = service.listDepartaments();

        //for singleselect of departaments
        for(int i=0; i<departamentsList.size(); i++){
            Departament dep = departamentsList.get(i);
            departamentsMap.put(dep.getDepartamentId(),dep.getTitle() );
        }                    
        model.addObject("departamentsMap",departamentsMap);


   return "newEmployee";
        }
于 2013-04-07T11:56:55.043 に答える