-
Notifications
You must be signed in to change notification settings - Fork 513
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BugFixes: - 修复DEFAULT_RETRY_AFTER_SECOND拼写错误(#181 @liangxiong3403) - 修复metaDataSet default value logic bug(#182 @liangxiong3403) Update: - JDK版本升级到1.8版本,做一个大的版本升级(#189 @HaoQiangJiang) - 重命名ConnectionManager ,解决与openfeign包冲突(#186 @summitxf) - 合并增加一种文件下载回调方法(#161 @xlb ),并在此基础上重构 - 增加连接池控制参数:连接空闲的最小时间、创建时是否进行连接测试、借出时是否检测有效性 - 调整连接池默认参数,关闭自动检查机制,如果需要自动检查,请手动开启 Docs: - 常见问题:生成的缩略图该怎么访问 (#179 @msh01) - 常见问题:能自定义上传路径么,或者有没有类似的解决方案(#173 @yj348382870) - 常见问题:请问当上传100M以上文件怎么才能获取进度(#172 @lxge) 升级提示: - 没有接口改动,默认JDK升级到1.8版本 close #181,#182,#189,#186,#161,#179,#173,#172
- Loading branch information
Showing
18 changed files
with
279 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.github.tobato</groupId> | ||
<artifactId>fastdfs-client</artifactId> | ||
<version>1.26.8-SNAPSHOT</version> | ||
<version>1.27.1</version> | ||
<packaging>jar</packaging> | ||
<!-- x-SNAPSHOT --> | ||
|
||
|
@@ -30,14 +29,14 @@ | |
<connection>scm:git:[email protected]:tobato/FastDFS_Client.git</connection> | ||
<developerConnection>scm:git:[email protected]:tobato/FastDFS_Client.git</developerConnection> | ||
<url>https://github.com/tobato/FastDFS_Client</url> | ||
<tag>HEAD</tag> | ||
<tag>fastdfs-client-1.27.1</tag> | ||
</scm> | ||
|
||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>2.0.0.RELEASE</version> | ||
<relativePath/> | ||
<relativePath /> | ||
</parent> | ||
|
||
<properties> | ||
|
@@ -53,7 +52,7 @@ | |
|
||
<!-- Plugin的属性定义 --> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<java.version>1.7</java.version> | ||
<java.version>1.8</java.version> | ||
|
||
<!-- 本地发布服务器 --> | ||
<local.nexus>192.168.129.12:8081</local.nexus> | ||
|
@@ -277,6 +276,12 @@ | |
<artifactId>spring-boot-configuration-processor</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<!-- <dependency>--> | ||
<!-- <groupId>javax.servlet</groupId>--> | ||
<!-- <artifactId>javax.servlet-api</artifactId>--> | ||
<!-- <version>3.1.0</version>--> | ||
<!-- </dependency>--> | ||
</dependencies> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
189 changes: 0 additions & 189 deletions
189
src/main/java/com/github/tobato/fastdfs/domain/conn/ConnectionManager.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.