1.配置事物管理器
2.開啟註解事物
3.然後在需要事務的語句前新增註解@transactional
4.@transactional註解中的屬性
transational(propagation=propagation.required,isolation=isolation.default,readonly=false)
propagation:事務的傳播行為
isolation:事務的隔離級別
readonly:唯讀資訊
rollbackfor:發生哪些異常回滾
Spring註解宣告式事務配置
一 引入命名空間 二 具有 transactional 註解的bean 自動配置為宣告式事務支援 bean id transactionmanager class org.springframework.orm.hibernate3.hibernatetransactionmanager prope...
5 使用註解實現宣告式事務
通過註解的形式,將bean以及相關的屬性值放入ioc容器 component studentdao 這是註解 public class studentdaoimpl 配置檔案增加 package com.lianqiao.dao context component scan spring在啟動的時候...
spring基於註解 的宣告式事務控制(配置方式)
配置事務管理器 transactionmanager class org.springframework.jdbc.datasource.datasourcetransactionmanager datasource ref datasource property bean service acco...