2014-08-29 92 views
0

我已經使用Spring + Hibernate MVC啓動了Web應用程序。我創建了所有文件。當我調試我的應用程序時有一些問題。這裏我附加了test-servlet.xml。首先是如何添加'',然後有3個錯誤,當我調試我的應用程序。我也提到了錯誤行。所以任何人都可以幫我解決這個問題?spring + hibernate web應用

錯誤:

![javax.servlet.ServletException: Servlet.init() for servlet test threw exception 

org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource \[/WEB-INF/config/test-servlet.xml\]; nested exception is java.lang.NoClassDefFoundError: org/springframework/transaction/interceptor/TransactionInterceptor 

java.lang.NoClassDefFoundError: org/springframework/transaction/interceptor/TransactionInterceptor] 

enter image description here enter image description here

+0

你能說出你正在使用的依賴關係嗎? – geoand 2014-08-29 08:58:14

+0

這篇文章可以幫助http://stackoverflow.com/questions/10261014/java-lang-noclassdeffounderror-org-springframework-transaction-interceptor-tran – 2014-08-29 09:21:10

回答

0

異常說:

java.lang.NoClassDefFoundError: 
org/springframework/transaction/interceptor/TransactionInterceptor 

檢查你的WEB-INF/lib和確保你有春天的jar文件包含這個類。

0

該類在"spring-tx" jar中找到,應該出現在你的類路徑(lib)中。請檢查這個。如果不存在,請從here下載適當的版本。

0

下載org.springframework.transaction.jar並添加它到您的類路徑。

相關問題