2012-03-07 3 views
1

У меня есть это исключение. Это мой код:no bean с именем «userDao» определено

ApplicationContext context = new ClassPathXmlApplicationContext("classpath*:/servlet-context.xml"); 
UserDao userDao = (UserDao) context.getBean("userDao"); 

И это мой файл сервлет-context.xml расположен в /myproject/WebContent/WEB-INF/spring/appServlet/servlet-context.xml

<?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure --> 

    <!-- Enables the Spring MVC @Controller programming model --> 
    <annotation-driven /> 

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory --> 
    <resources mapping="/resources/**" location="/resources/" /> 

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory --> 
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <beans:property name="prefix" value="/WEB-INF/views/" /> 
     <beans:property name="suffix" value=".jsp" /> 
    </beans:bean> 

    <beans:bean id="userDao" class="it.ex.home.dao.JdbcUserDao"> 
     <beans:property name="dataSource" ref="dataSource"/> 
    </beans:bean> 

    <beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> 
     <beans:property name="driverClassName" value="com.mysql.jdbc.Driver"/> 
     <beans:property name="url" value="jdbc:mysql://localhost:3306/hibernate_db"/> 
     <beans:property name="username" value="root"/> 
     <beans:property name="password" value="root"/> 
    </beans:bean> 

    <context:component-scan base-package="it.ex.home" /> 

</beans:beans> 

Как могу я исправить это?

+0

Weird, вы можете попробовать 'getBean (JdbcUserDao.class)'? Кроме того, вы уверены, что загружаете правильный файл? Сделайте это синтаксически неправильным XML и посмотрите, жалуется ли Spring. –

ответ

1

classpath*:/servlet-context.xml загрузит каждый servlet-context.xml ресурс из root пути к вашему приложению.

/myproject/WebContent/WEB-INF/spring/appServlet/servlet-context.xml, однако, вообще не принадлежит к корню для классов, поэтому Spring игнорирует ваш файл и создает пустой контекст.

Попробуйте переместить servlet-context.xml непосредственно под WEB-INF/classes (т. Е. До WEB-INF/classes/servlet-context.xml).

В качестве альтернативы, переместите его в WEB-INF/classes/spring/appServlet/servlet-context.xml и изменить свой код classpath*:/spring/appServlet/servlet-context.xml