問題描述
使用 MongoDB 存儲數據的 Java 應用程序是否需要 Maven? (Is Maven necessary for a Java application that uses MongoDB to store data?)
我正在製作一個使用 MongoDB 存儲數據的 Java webapp。是否有必要為此使用 Maven?無論我在 Internet 上看到什麼示例和教程,都包含 Maven。沒有Maven就不能做嗎?
參考解法
方法 1:
Maven is a Dependency manager
. Maven has no link with MongoDB. Yes, you can use maven in your project to manage dependencies. MongoDB is a database. You can create application without using MAVEN
.
(by Tushar Kanta Prusty、Danyal Sandeelo)