springboot 學習筆記(六)

2021-09-27 03:42:57 字數 724 閱讀 1649

1.首先在主main類上新增開啟事務的註解@enabletransactionmanagement(

)@enabletransactionmanagement

public

class

}2.在service上開啟事務註解@transactional

studentservice

public

inte***ce

studentservice

studentimpl

@service

public

class

studentimpl

implements

studentservice

}

mybatiscontroller

@restcontroller

public

class

mybatiscontroller

}

此時執行主main類 在瀏覽器上輸入對應的路徑就可以在控制台得到輸出1 以及by zero的報錯檢視資料庫 並沒有修改 表示事務已經開啟成功 報錯回滾

Spring Boot學習筆記(六)

相關註解 案例演示 建立spring boot專案,新增web依賴 在專案的類路徑下新建乙個test.properties自定義配置檔案,在該配置檔案中編寫需要設定的配置屬性。對實體類myproperties進行屬性配置 test.id 110 test.name test 在com.包名 doma...

spring boot 學習筆記

spring boot 學習筆記 1.有時候我們在專案啟動的時候,總是需要先啟動一些初始化的類,以前比較常見的做法是寫再static塊中,spring boot提供了乙個commandlinerunner介面,實現這個介面的類總是會被優先啟動,並優先執行commandlinerunner介面中提供的...

spring boot 學習筆記

本位參考 生成spring boot 工程,通過 spring boot 快速入門 spring boot 開發web 應用 spring boot工程結構推薦 spring boot構建restful api與單元測試 spring boot中使用swagger2構建強大的restful api文...