<tx:annotation-driven transaction-manager="txManager"⼀>

2024-11-28 09:54:12
推荐回答(3个)
回答1:

我仔细对照了一下正确的使用Spring2.5项目的代码,发现关键在于:

beans声明时,对tx命名空间的xsi:schemaLocation也要加版本号,即:


       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/aop 
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">


上面是截取的beans声明部分,你注意最后一行,对照改对即可。

回答2:

我记得好像是

回答3:

你xml全部发出来看下,而且说下你的问题是什么。