我正在使用Spring Boot来实现连接到Mongodb的REST API。但是,所有数据更新都会传递到名为test的默认数据库中。目前我已经完成了这些:
非常感谢你!
答案 0 :(得分:0)
据我所知,您需要指定不同的数据库名称。可以使用Common应用程序属性来完成。 请参阅http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
添加
spring.data.mongodb.database=test # Your Database name
您的application.properties文件中的