6

hibernate と spring を統合しようとすると、このエラーが発生しました

SEVERE: コンテキストの初期化に失敗し ましたorg.springframework.beans.factory.BeanCreationException: 名前 ' org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping' の Bean の作成中にエラーが発生しました: Bean の初期化に失敗しました。ネストされた例外java.lang.IllegalStateException: ハンドラー ' org.me.spring.hib.school.web.SchoolController#0' を URL パス [ /allschools] にマップできません: タイプ [クラスorg.me.spring.hib.school.web.SchoolController] のハンドラーが既にマップされています。

私のコントローラーは次のようになります

package org.me.spring.hib.school.web;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.me.spring.hib.school.dao.SchoolDAO;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class SchoolController {
    private SchoolDAO schoolDao;

    public SchoolDAO getSchoolDao() {
        return schoolDao;
    }

    public void setSchoolDao(SchoolDAO schoolDao) {
        this.schoolDao = schoolDao;
    }
        @RequestMapping("/allschools")
    public ModelAndView showAllSchools(HttpServletRequest request,HttpServletResponse response) throws Exception{
        if(this.schoolDao ==null){
            System.out.println("this.schoolDao is null");
        }
        ModelMap modelMap = new ModelMap();
        modelMap.addAttribute("schoolsList", this.schoolDao.getAllSchools());
        return new ModelAndView("allschools", modelMap);
    }

}

アプリのコンテキスト ファイルに dao 実装を挿入しました

    <context:component-scan base-package="org.me.spring.hib.school.web" />

    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate"> 
       <property name="sessionFactory" >
           <ref bean="sessionFactory" />
       </property>    
    </bean>

    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
       <property name="dataSource">
          <ref local="dataSource"/>
       </property>
       <property name="annotatedClasses">
            <list>
                <value>org.me.spring.hib.school.domain.School</value>
                <value>org.me.spring.hib.school.domain.Teacher</value>
                <value>org.me.spring.hib.school.domain.Student</value>
            </list>
       </property>


       <property name="hibernateProperties">
        <props>
                <prop key="hibernate.dialect"> org.hibernate.dialect.HSQLDialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">create</prop>
        </props>
       </property>

   </bean>

    <bean id="schoolDao" class="org.me.spring.hib.school.dao.SchoolDAOImpl">
        <property name="hibernateTemplate" ref="hibernateTemplate" />
    </bean>


    <bean  class="org.me.spring.hib.school.web.SchoolController" >
            <property name="schoolDao" ref="schoolDao" />
    </bean>

SchoolController#0が URL にマップされている理由がわかりません 。

4

3 に答える 3

22

両方あるからこうなる

<context:component-scan base-package="org.me.spring.hib.school.web" />

<bean  class="org.me.spring.hib.school.web.SchoolController" >

最初の行は、 を自動検出して登録SchoolControllerします。別のものを明示的に宣言すると、重複が発生し、URL マッピングが衝突します。

<context:component-scan>を削除するか、コントローラーと DAO の明示的な Bean 定義を削除する必要があります。後者を行う場合は、自動配線を使用して依存関係を注入する必要があります。

于 2011-01-26T12:12:10.547 に答える
0

<mvc:annotation-driven/>または、XML で言及して削除することもできます

<context:component-scan base-package="org.me.spring.hib.school.web" />部。

XML 表記に慣れている場合。

于 2015-11-26T07:23:27.830 に答える