试图整合hibernate和spring,我遇到了这个错误
SEVERE:上下文初始化失败
org.springframework.beans.factory.BeanCreationException
:创建名称为bean的错误 'org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping
':bean初始化失败;嵌套异常为java.lang.IllegalStateException
:无法映射处理程序'org.me.spring.hib.school.web.SchoolController#0
'到URL路径[/allschools
]:已经映射了[classorg.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
被映射到网址。
答案 0 :(得分:22)
这种情况正在发生,因为你有两个
<context:component-scan base-package="org.me.spring.hib.school.web" />
和
<bean class="org.me.spring.hib.school.web.SchoolController" >
第一行会自动发现并为您注册SchoolController
。通过明确声明另一个,你得到一个副本,url-mapping将发生冲突。
您需要删除<context:component-scan>
,或删除控制器和DAO的显式bean定义。如果您执行后者,则需要使用自动装配来注入其依赖项。
答案 1 :(得分:0)
我遇到了类似的问题。 我用&#34; @Controller&#34;定义了控制器类。并且在Spring-config.xml文件中作为bean并注入了依赖项。
这导致了这个问题。 @Controller正在定义bean,而xml文件中定义的bean又重新定义了依赖项。 我尝试自动装配依赖项并将其作为bean从xml文件中删除。 然后它奏效了。
答案 2 :(得分:0)
或者您可以在XML中提及<mvc:annotation-driven/>
并删除
<context:component-scan base-package="org.me.spring.hib.school.web" />
部分。
如果您对XML表示法感到满意。