标签: mongodb spring-boot kotlin spring-boot-test
我使用Spring Boot,Kotlin和Mongodb创建了一个简单的应用程序。现在,我想在测试CustomerServiceIntegrationTest中使用@Transactional批注,以确保每个测试用例都回滚它对数据库所做的任何更改。
当我添加@Transactional时,会收到消息Failed to retrieve PlatformTransactionManager for @Transactional test。
Failed to retrieve PlatformTransactionManager for @Transactional test
否则,可以写入数据库。
我想念什么?
https://github.com/urswiss/customer