關於NoSuchBeanDefinitionException: No bean named 'xxxx' is defined問題解決
阿新 • • 發佈:2019-02-02
問題如下
NoSuchBeanDefinitionException: No bean named 'userDao' is defined
查閱了網上關於IoC的資料後,明白了一些這方面的知識。這裡單刀直入的給出解決方法。
樓主是在UserController中使用瞭如下程式碼
@Resource(name = "userDao")
private UserDao userDao;
為了找到這個介面的實現類,我們需要知道兩點。1、有這個藉口的實現類存在;2、怎麼找到它。
樓主定義的類和實現的類如下圖所示
包錯的意思大致是沒有找到userDao的實現。
在spring下建立spring-bean.xml,並在該檔案中定義對映關係
檔案內容
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> <bean id="userDao" class="cn.tabris.demo.daoImpl.UserDaoImpl"> <property name="sessionFactory" ref="sessionFactory"></property> </bean> </beans>
此時沒完。工程的context依舊是root-context.xml。進入web.xml修改配置資訊。由於樓主工程還有spring-hibernate.xml需要作為context
。因此此處改為spring-*.xml。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/spring-*.xml</param-value>
</context-param>
重新發布。發現登入時404。開啟Console,發現在釋出時已經報錯。錯誤很長,擷取重點部分
Error creating bean with name 'txPointcut': Instantiation of bean failed;
似乎又是bean初始化失敗。但是本工程並沒有使用過txPointcut這個bean。想起樓主的spring-hibernat.xml是複製其他工程的。進入ctrl+f發現如下內容
<aop:config expose-proxy="true">
<!-- 只對業務邏輯層實施事務 -->
<aop:pointcut id="txPointcut" expression="execution(* com.lei.demo.service..*.*(..))" />
<!-- Advisor定義,切入點和通知分別為txPointcut、txAdvice -->
<aop:advisor pointcut-ref="txPointcut" advice-ref="txAdvice"/>
</aop:config>
將其登出。一切正常。