spring-boot 配置hibernate
1.建一個spring-boot的工程,在pom中加springboot-web的依賴
2.在spring-boot的啟動類(也是配置類)類上有標註:springbootApplication,這裡邊有main方法可以啟動springboot,把連線資料的一些bean(datasource, hibernateTemplate, TransactionManager)配置到這裡邊.
3.在service方法上加上事務標註就可以了
在網上參考了資料:
blog.csdn.net/catoop/article/details/50595702