Skip to content

Commit

Permalink
Merge pull request #2 from waylau/feat_update_to_spring_boot_2_0_3
Browse files Browse the repository at this point in the history
update to spring boot 2.0.3
  • Loading branch information
waylau authored Jun 30, 2018
2 parents daa2d56 + 7e0bbbb commit 2cf14b1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ MongoDB File Server is a file server system based on MongoDB. MongoDB File Serve

It's using some very popular technology like:

* MongoDB 3.4.4
* Spring Boot 2.0.0.M7
* Thymeleaf 3.0.3.RELEASE
* MongoDB 3.6.4
* Spring Boot 2.0.3.RELEASE
* Spring Data MongoDB 2.0.8.RELEASE
* Spring 5.0.7.RELEASE
* Thymeleaf 3.0.9.RELEASE
* Thymeleaf Layout Dialect 2.2.0
* Embedded MongoDB 2.0.0
* Gradle 4.4.1
* Embedded MongoDB 2.0.2
* Gradle 4.5.1

基于 MongoDB 的文件服务器。MongoDB File Server 致力于小型文件的存储,比如博客中图片、普通文档等。由于MongoDB 支持多种数据格式的存储,对于二进制的存储自然也是不话下,所以可以很方便的用于存储文件。由于 MongoDB 的 BSON 文档对于数据量大小的限制(每个文档不超过16M),所以本文件服务器主要针对的是小型文件的存储。对于大型文件的存储(比如超过16M),MongoDB 官方已经提供了成熟的产品 [GridFS](https://docs.mongodb.com/manual/core/gridfs/),读者朋友可以自行了解。

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript { // buildscript 代码块中脚本优先执行

// ext 用于定义动态属性
ext {
springBootVersion = '2.0.0.M7'
springBootVersion = '2.0.3.RELEASE'
}

// 使用了 Maven 的中央仓库(也可以指定其他仓库)
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.5.1-bin.zip
#distributionUrl=file\:/D:/software/webdev/java/gradle-4.0-all.zip

0 comments on commit 2cf14b1

Please sign in to comment.