File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ MongoDB File Server is a file server system based on MongoDB. MongoDB File Serve
44
55It's using some very popular technology like:
66
7- * MongoDB 3.4.4
8- * Spring Boot 2.0.0.M7
9- * Thymeleaf 3.0.3.RELEASE
7+ * MongoDB 3.6.4
8+ * Spring Boot 2.0.3.RELEASE
9+ * Spring Data MongoDB 2.0.8.RELEASE
10+ * Spring 5.0.7.RELEASE
11+ * Thymeleaf 3.0.9.RELEASE
1012* Thymeleaf Layout Dialect 2.2.0
11- * Embedded MongoDB 2.0.0
12- * Gradle 4.4 .1
13+ * Embedded MongoDB 2.0.2
14+ * Gradle 4.5 .1
1315
1416基于 MongoDB 的文件服务器。MongoDB File Server 致力于小型文件的存储,比如博客中图片、普通文档等。由于MongoDB 支持多种数据格式的存储,对于二进制的存储自然也是不话下,所以可以很方便的用于存储文件。由于 MongoDB 的 BSON 文档对于数据量大小的限制(每个文档不超过16M),所以本文件服务器主要针对的是小型文件的存储。对于大型文件的存储(比如超过16M),MongoDB 官方已经提供了成熟的产品 [ GridFS] ( https://docs.mongodb.com/manual/core/gridfs/ ) ,读者朋友可以自行了解。
1517
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ buildscript { // buildscript 代码块中脚本优先执行
22
33 // ext 用于定义动态属性
44 ext {
5- springBootVersion = ' 2.0.0.M7 '
5+ springBootVersion = ' 2.0.3.RELEASE '
66 }
77
88 // 使用了 Maven 的中央仓库(也可以指定其他仓库)
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ distributionBase=GRADLE_USER_HOME
22distributionPath =wrapper/dists
33zipStoreBase =GRADLE_USER_HOME
44zipStorePath =wrapper/dists
5- distributionUrl =https\://services.gradle.org/distributions/gradle-4.4 .1-bin.zip
5+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.5 .1-bin.zip
66# distributionUrl=file\:/D:/software/webdev/java/gradle-4.0-all.zip
You can’t perform that action at this time.
0 commit comments