spring jdbctemplate 使用 AOP管理事务,但是无效,具体的配置文件如下: 5

<!--使用jdbcTemplate访问数据库--><beanid="jdbcTemplate"class="org.springframework.jdbc.core.... <!-- 使用jdbcTemplate访问数据库 -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"/>
</bean>

<!-- 事务控制 -->
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>

<!-- 使用AOP -->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="query*" propagation="NOT_SUPPORTED" read-only="true"/>
<tx:method name="save*" propagation="REQUIRED"/>
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="date*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="*Tx" propagation="REQUIRED" />
</tx:attributes>
</tx:advice>

<aop:config>
<aop:pointcut id="serviceOperation" expression="execution(* com.cn.wuzb.service..*.*(..))" />
<aop:advisor pointcut-ref="serviceOperation" advice-ref="txAdvice" />
</aop:config>

我在Service层定义一个查询方法:

@Override
public List<User> queryAllUsers() {
return userDao.queryAllUsers();
}

在相应的Dao层

@Override
public List<User> queryAllUsers() {
User user = new User();
user.setUsername("test");
user.setAge(32);
user.setEmail("123456@qq.com");
user.setPassword("123");
// 这里可以做修改操作,并没有像配置文件那样,Spring有控制只读事务,而且抛异常也不会回滚
getJdbcTemplate().update(UPDATE_USER_INFO, new Object[]{user.getPassword(),user.getAge(),user.getEmail(),user.getUsername()}, new int[]{Types.VARCHAR,Types.INTEGER,Types.VARCHAR,Types.VARCHAR});
return getJdbcTemplate().query(USER_ALL_SQL, new UserMapper());
}
所以请问一下这是怎么回事,我的Mysql上的表是ENGINE=InnoDB,应该不是数据库不支持事务导致的。
下面是测试类:
public class TestService {
ApplicationContext context = null;

@Before
public void init(){
context = new ClassPathXmlApplicationContext("applicationContext.xml");
}

@Test
public void testUserService() throws Exception {
UserService service = context.getBean(UserService.class);
service.queryAllUsers();
}

}
展开
 我来答
HHPpeace888
2014-10-20 · TA获得超过565个赞
知道小有建树答主
回答量:529
采纳率:66%
帮助的人:366万
展开全部
在serice实现类上添加@Transactional,在spring的配置文件里添加
<!-- 模型驱动 -->
<tx:annotation-driven transaction-manager="transactionManager"/> 这样就可以了。
1039725910
2014-10-20 · TA获得超过318个赞
知道小有建树答主
回答量:364
采纳率:100%
帮助的人:264万
展开全部
可以使用@Transactional
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式