報錯: org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [beans.xml]; ne ...
報錯:
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [beans.xml]; nested exception is java.lang.IllegalStateException: Context namespace element 'annotation-config' and its parser class [org.springframework.context.annotation.AnnotationConfigBeanDefinitionParser are only available on JDK 1.5 and higher
大意:SPRING的註解配置解析器只能在JDK1.5或更高版本使用,我的ECLIPSE 預設的是1.8,我使用的SPRING版本是2.5,總之就是1.8的JDK太高了,SPRING 支持不了。
前提是:你在Spring容器裡面配置了,annotation-driven來啟用事務
<!-- 配置事務管理器,統一管理session Factory的事務 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory" /> </bean> <!-- 啟用事務註解 --> <tx:annotation-driven transaction-manager="txManager" />
解決:項目右鍵--》BUILD PATH--》Config Build Path--》Libraries-->Jre System Library--》Edit--》配置1.7的就OK 啦!