2016-02-25 32 views
0

我新的春天,我正在做的日食月亮同樣的例子在MyEclipse的工作彈簧註釋的例子,但在Eclipse中沒有工作春天註釋例如服務器加載時間就顯示錯誤

收到此錯誤任何一個可以幫助我

org.springframework.beans.factory.BeanCreationException:創建名爲'studentController'的bean時出錯:注入自動裝配依賴失敗;嵌套異常是org.springframework.beans.factory.BeanCreationException:無法自動裝入字段:private com.vcs.service.StudentService com.vcs.controller.StudentController.studentService;嵌套異常是org.springframework.beans.factory.BeanCreationException:創建名爲'studentServiceImpl'的bean時出錯:注入自動裝配依賴失敗;嵌套異常是org.springframework.beans.factory.BeanCreationException:無法自動裝入字段:private com.vcs.dao.StudentDao com.vcs.service.StudentServiceImpl.studentDao;嵌套異常是org.springframework.beans.factory.BeanCreationException:創建名爲'studentdaoImpl'的bean時出錯:注入自動裝配依賴失敗;嵌套異常是org.springframework.beans.factory.BeanCreationException:無法自動裝入字段:private org.hibernate.SessionFactory com.vcs.dao.StudentdaoImpl.sessionFactory;嵌套異常是org.springframework.beans.factory.BeanCreationException:在ServletContext資源[/WEB-INF/DispatcherServlet-servlet.xml]中定義名稱爲'sessionFactory'的Bean時創建錯誤:調用init方法失敗;嵌套的例外是java.lang.NoClassDefFoundError:在org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:286)

+0

如果你仔細閱讀錯誤,你會看到你錯過了一個包含類'組織/休眠罐子/上下文/ CurrentSessionContext' – Augusto

回答

0

縱觀過去錯誤的Java組織/休眠/上下文/ CurrentSessionContext 。 lang.NoClassDefFoundError'看起來好像你缺少一個包含CurrentSessionContext的hibernate依賴(hibernate-core)。

0

您正在獲取org.hibernate.context.CurrentSessionContext的NoClassDefFoundError異常。

我的猜測是,在你的eclipse設置下,所需的依賴關係不在你的類路徑中。

檢查您的eclipse構建的war文件夾內的lib文件夾。我假設它是來自WEB-INF存在的WAR存檔。

可我也建議你格式化你的代碼的代碼塊爲了便於閱讀