springboot项目使用MongoTemplate报错

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'com.example.demo.test': 

因为没有设置@SpringBootTest(classes = DemoApplication.class)

因为启动项目的入口是 DemoApplication.class 所以一定要设置

 

在application.properties配置文件中设置 

spring.data.mongodb.uri = 

spring.data.mongodb.database = 
 

你可能感兴趣的:(springboot项目使用MongoTemplate报错)