#534 - Add @EnableTransactionManagement for R2DBC example.

This commit is contained in:
Mark Paluch
2019-09-19 09:59:33 +02:00
parent 8b1fcfce37
commit 60fff4255f

View File

@@ -16,10 +16,12 @@
package example.springdata.r2dbc.basics;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.transaction.annotation.EnableTransactionManagement;
/**
* @author Oliver Gierke
* @author Mark Paluch
*/
@SpringBootApplication
class InfrastructureConfiguration { }
@EnableTransactionManagement
class InfrastructureConfiguration {}