spring--啓動事務註解報錯

今天在配置事務的時候,一直報錯,事務配置代碼以下java

<!-- 配置事物管理器 -->
		<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
			<property name="dataSource" ref="dataSources"></property>
		</bean>
		
		<!-- 啓用事物註解 -->
		<tx:annotation-driven transaction-manager="transactionManager"/>

xml文件一直報錯以下spring

Error occured processing XML 'org.springframework.aop.config.AopNamespaceUtils.registerAutoProxyCreatorIfNecessary(Lorg/springframework/beans/factory/xml/
 ParserContext;Ljava/lang/Object;)V'. See Error Log for more details

截圖以下
輸入圖片說明
就是<tx:annotation-driven transaction-manager="transactionManager"/>這行報錯。
查詢緣由,原來是spring-dao-2.0.8.jar包與spring-aop.jar包衝突了,好吧,那就刪掉spring-dao.jar包,順利解決問題。spa

相關文章
相關標籤/搜索