jimmycheng888 opened a new issue #2170: Integrate mongodb transaction conflict error URL: https://github.com/apache/incubator-shardingsphere/issues/2170 ### Which version of ShardingSphere did you use? 3.1.0 ### Which project did you use? Sharding-JDBC or Sharding-Proxy? Sharding-JDBC ### Actual behavior Switching transaction Type is unsupported for transaction manager org.springframework.data.mongodb.MongoTransactionManager ### Example codes for reproduce this issue (such as a github link). java Code @Configuration public class MongoConfig { @Bean MongoTransactionManager mongoTransactionManager(MongoDbFactory mongoDbFactory) { return new MongoTransactionManager(mongoDbFactory); } } maven Configuration information <!--sharing-jdbc start--> <dependency> <groupId>io.shardingsphere</groupId> <artifactId>sharding-jdbc-spring-boot-starter</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>io.shardingsphere</groupId> <artifactId>sharding-jdbc-spring-namespace</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>io.shardingsphere</groupId> <artifactId>sharding-transaction-spring-boot-starter</artifactId> <version>3.1.0</version> </dependency> <!--sharing-jdbc end--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> <version>2.1.5.RELEASE</version> </dependency>
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
