Java异步调用实现并发上传下载SMB共享文件
2021-02-08 00:16
标签:length 博客 download val inter version eth one component 通常情况下,上传(下载)多个SMB共享文件这类任务之间不存在依赖关系,可以考虑通过异步调用的方式来实现上传(下载)的并发执行,来充分利用系统资源以提高计算机的处理能力。 来看一下以下载为例该程序最后的运行日志: 其中最直接的体现,同一组大概3个G的文件,异步执行下载SMB共享文件比非异步所用时间更少,提高了下载效率。下面展示完整的程序代码。 共享文件操作类: 定义异步操作接口: 实现异步操作接口: 共享文件信息类: SMB文件操作任务类: 构建SmbFile文件实例: 自己测试用的文件的目录结构大概如图所示: 这里采用了swagger调用controller接口的方式进行了相关测试,代码示例如下:(也可以直接用单元测试) Java异步调用实现并发上传下载SMB共享文件 标签:length 博客 download val inter version eth one component 原文地址:https://www.cnblogs.com/WangJpBlog/p/12773594.html
Java异步调用实现并发上传下载SMB共享文件
选择异步
所需依赖
服务类
@Async
注解标注uploadSmbFileAsync
方法和downloadSmbFileAsync
方法为需要异步执行的方法。jcifs.smb.client.dfs.disabled
属性设置为true
,默认值为false
,在非域环境中,此属性可能很重要,其中基于域的DFS引用通常在JCIFS首次尝试解析路径时运行,这将导致超时,从而导致长启动延迟。package com.example.smb.service;
/**
* @author: 博客「成猿手册」
* @description: 对共享文件的操作
* @date: 2020/3/24
*/
@Component
public class SmbFileOperator {
private final Logger logger = LoggerFactory.getLogger(SmbFileOperator.class);
public SmbFileOperator() {
System.setProperty("jcifs.smb.client.dfs.disabled", "true");
}
@Async
public Future
timeout
:为等待的最长时间数;timeUnit
超时参数的时间单位(秒,分,小时等)。package com.example.smb.service;
/**
* @author: 博客「成猿手册」
* @description: 异步操作接口
* @date: 2020/3/26
*/
public interface SmbExecuteAsync {
void downloadSmb(SmbInfo smbFileInfo, long timeout, TimeUnit timeUnit) throws BaseException,IOException;
void uploadSmb(SmbInfo smbFileInfo, long timeout, TimeUnit timeUnit) throws BaseException,IOException;
}
ThreadLocal
规避多线程访问出现线程不安全的方法:每个线程通过ThreadLocal
的set()
和get
方法确保对变量smbFileTaskThreadLocal
进行访问的时候访问的都是该线程自己的变量。generateDownloadSmbFileTask
通过递归方式获取文件夹下需要下载的文件完整路径(上传类似)。package com.example.smb.service.impl;
/**
* @author: 博客「成猿手册」
* @description: 异步操作接口实现
* @date: 2020/3/26
*/
@Service("SmbExecuteAsync")
public class SmbExecuteAsyncImpl implements SmbExecuteAsync {
@Autowired
private SmbInstance smbInstance;
@Autowired
private SmbFileOperator smbFileOperator;
private final Logger logger = LoggerFactory.getLogger(SmbExecuteAsyncImpl.class);
private final ThreadLocal
> smbFileTaskThreadLocal = new ThreadLocal();
@Override
public void downloadSmb(SmbInfo smbInfo, long timeout, TimeUnit timeUnit) throws BaseException, IOException {
File file = new File(smbInfo.getLocalDirPath());
if (!file.exists()) {
throw new BaseException("本地文件不存在:" + smbInfo.getLocalDirPath());
}
SmbFile smbFile = smbInstance.getSmbFileInstance(
smbInfo.getIp(), smbInfo.getUserName(), smbInfo.getPassWord(), smbInfo.getSmbFilePath());
if (!smbFile.exists()) {
throw new BaseException("SMB共享文件不存在:" + smbFile.getPath());
}
smbFileTaskThreadLocal.set(new ArrayList());
List
实体类
package com.example.smb.entity;
import org.springframework.stereotype.Component;
/**
* @author: 博客「成猿手册」
* @description: 记录共享文件相关信息
* @date: 2020/3/22
*/
@Component
public class SmbInfo {
private String ip;
private String userName;
private String passWord;
private String smbFilePath;
private String localDirPath;
public SmbInfo() {
}
public SmbInfo(String ip, String userName, String passWord, String smbFilePath, String localDirPath) {
this.ip = ip;
this.userName = userName;
this.passWord = passWord;
this.smbFilePath = smbFilePath;
this.localDirPath = localDirPath;
}
//todo:此处省略get和set方法
}
package com.example.smb.entity;
/**
* @author: 博客「成猿手册」
* @description: Smb任务类
* @date: 2020/3/26
*/
@Component
public class SmbFileTask {
private File file;
private SmbFile smbFile;
public SmbFileTask() {
}
public SmbFileTask(File file, SmbFile smbFile) throws BaseException{
this.file = file;
this.smbFile = smbFile;
try{
if (this.smbFile.isDirectory()){
throw new BaseException("SmbFileTask不能为目录类型"+smbFile.getPath());
}
} catch (SmbException | BaseException e) {
throw new BaseException("SmbFileTask不能为目录类型"+smbFile.getPath(),e);
}
}
//todo:此处省略get和set方法
}
package com.example.smb.entity;
/**
* @author: 博客「成猿手册」
* @description: 构建SmbFile文件实例
* @date: 2020/3/26
*/
@Component
public class SmbInstance {
public SmbFile getSmbFileInstance(String ip, String username, String password, String smbfilepath) throws MalformedURLException {
NtlmPasswordAuthentication authentication = null;
//两种访问方式:有账号密码,无账号密码;
if (StringUtils.isNotBlank(username) && StringUtils.isNotBlank(password)) {
authentication =
new NtlmPasswordAuthentication(ip, username, password);
}
String smburl = String.format("smb://%s/%s", ip, smbfilepath);
return new SmbFile(smburl, authentication);
}
}
调用方法
package com.example.smb.controller;
/**
* @author: 博客「成猿手册」
* @description: 控制层接口
* @date: 2020/4/8
*/
@RestController
@RequestMapping("/smbExecute")
@Api(tags = {"SMB操作相关"},
produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public class SmbController {
@Autowired
private SmbExecuteAsync smbExecute;
@PostMapping(value = "/smbDownload")
@ApiOperation(value = "SMB下载测试")
public void smbDownload() throws IOException, BaseException {
SmbInfo smbInfo =
new SmbInfo("192.168.1.106", "username",
"password", "Test/成猿手册的smb目标文件夹/", "D:\\LocalTest\\");
smbExecute.downloadSmb(smbInfo, 1, TimeUnit.HOURS);
}
@PostMapping(value = "/smbUpload")
@ApiOperation(value = "SMB上传测试")
public void uploadSmbTest() throws IOException, BaseException {
SmbInfo smbInfo =
new SmbInfo("192.168.1.106", "username",
"password", "Test/", "D:\\LocalTest\\成猿手册的smb目标文件夹\\");
smbExecute.uploadSmb(smbInfo, 1, TimeUnit.HOURS);
}
}
文章标题:Java异步调用实现并发上传下载SMB共享文件
文章链接:http://soscw.com/index.php/essay/52388.html