我正在使用Gradle作为依赖管理系统或其他任何方式开发Spring Boot Application。
在构建脚本中添加几个依赖项并重建项目之后,我希望构建将这些依赖项添加到项目中。但事实并非如此。无法导入这些库。我错过了什么步骤?我是node.js开发人员,我习惯于只运行npm install
来导入依赖项。
以下是依赖项:
dependencies {
compile('org.mongodb:mongodb-driver:3.2.2')
compile('org.springframework.boot:spring-boot-starter-data-mongodb')
}
并不重要,因为它们没有添加到项目中,但这里是最终的导入语句:
import org.mongodb.MongoClient;
import org.springframework.data.mongodb.core.MongoTemplate;