0

Spring MVC、JDBC(バージョン2.5)を使用してアプリケーションに正常にログインすると、「BindingResultまたはBean名'EmpPersonalBean'のプレーンターゲットオブジェクトが要求属性として使用可能です」というエラーが発生しました。ログインページをjsp/UserPage.jspに転送します

私のフォルダ構造は

WEB-ROOT      
  |__JSP  (folder)            
      |__user   (sub folder)                    
           |_userdashboardpage.jsp      
  |__loginpage.jsp  (In Webroot)    
  |__web.xml 

コントローラ:UserControllerクラス

ページを正常にリダイレクトした後、onsubmitメソッドと呼ばれるこのコントローラーで、以下のコードスニペットを確認してください

public ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse response,Object command,BindException errors) throws Exception {       
         String username="",password="";
         username=request.getParameter("username");
         password=request.getParameter("password");
        UserBean ubean=null;
        HttpSession session=request.getSession(true);
         try{
             ubean=userservice.chkUsername(username,password);
             System.out.println("Information"+ubean.getUsername());
             }catch(DataException ex){
             ex.printStackTrace();

             //throw ex;
              }
        session.setAttribute("User",ubean);
        ModelAndView mv=new ModelAndView(("forward:jsp/UserPage.jsp"));
        return  mv;
    }

UserPage.jspで

<%@ page language="java" import="com.aims.bean.*" contentType="text/html;charset=utf-8" pageEncoding="UTF-8"%>
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
<%@taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<%@taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
<html>
<head>
<title>AAI</title>
</head>
<body>
<form:form method="post" modelAttribute="EmpPersonalBean" action="userpage.htm">
<table>
<tr>
    <td>Welcome <%=((UserBean)session.getAttribute("User")).getUsername()%></td>
</tr>
<tr>
        <tr>
        <td>Department</td>
        <td><form:select path="deparment">
                      <form:option value="NONE" label="--- Select ---" />
                      <form:options items="${deparmentList}" />
                       </form:select>
        </td>
    </tr>
</tr>
</table>
</form:form>
</body>
</html>

ユーザーページで、UserDBBoardControllerのreferenceDataメソッドを使用してdeparmentリストを読み込もうとしています。

public class UserDBBoardController  extends SimpleFormController{
    private static final Log log=new Log(UserDBBoardController.class);
    private UserService userservice;
    public void setUserservice(UserService userservice) {
        this.userservice = userservice;
    }
    public UserDBBoardController(){
        setCommandClass(EmpPersonalBean.class);
        setCommandName("EmpPersonalBean");

    }
    protected Map referenceData(HttpServletRequest request) throws Exception {
        log.info("UserDBBoardController======================referenceData");
        Map referenceData = new HashMap();
        Map deparementList=new HashMap();
        deparementList=userservice.getDeparmentList();
        referenceData.put("deparmentList",deparementList);
        return referenceData;

    }
}

ディスパッチャServlet.xml:-

<?xml version="1.0" encoding="UTF-8"?>
                <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
        <props><prop key="/loginpage.htm">UserController</prop>
        <prop key="/userpage.htm">UserDBBoardController</prop></props>
    </property>
    </bean>
    <import resource="application-context.xml"/>
    <bean id="User" class="com.aims.bean.UserBean" scope="session" />
    <bean id="UserController" class="com.epis.controllers.UserController"  >
    <property name="userservice" ref="userservice"/>
    <property name="sessionForm"><value>true</value></property>
    <property name="commandName"><value>UserBean</value></property>
    <property name="commandClass"><value>com.aims.bean.UserBean</value></property>
    <property name="validator"><ref bean="userformValidator"/></property> 
    <property name="formView"><value>loginpage</value></property>
    <property name="successView"><value>UserPage</value></property>
    </bean>
    <bean id="UserDBBoardController" class="com.epis.controllers.UserDBBoardController"  >
    <property name="userservice" ref="userservice"/>
    <property name="sessionForm"><value>true</value></property>
    <property name="commandName"><value>EmpPersonalBean</value></property>
    <property name="commandClass"><value>com.aims.bean.EmpPersonalBean</value></property>

    </bean>

このエラーメッセージは、ユーザーページにdeparmentリストが読み込まれているために発生しました。この問題を解決するにはどうすればよいですか。助けてください。

もう1つの疑問は、SpringMVCが提供するコントローラーの種類が多すぎる理由です。

4

1 に答える 1

1

モデル名とモデルオブジェクトも受け入れるModelAndViewにこのコンストラクターを使用してみてください。 http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/web/servlet/ModelAndView.html#ModelAndView(java.lang.String、java.lang.String、java.lang。物体)

于 2012-06-07T14:44:13.220 に答える