|
@@ -1,13 +1,11 @@
|
|
|
package com.ruoyi.file.service;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.ruoyi.file.mapper.FileSequenceMapper;
|
|
|
import com.ruoyi.file.mapper.FilesMapper;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.util.DigestUtils;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import javax.servlet.ServletOutputStream;
|
|
@@ -16,8 +14,6 @@ import java.io.*;
|
|
|
import java.net.URLEncoder;
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
-import java.util.List;
|
|
|
-import java.util.UUID;
|
|
|
|
|
|
@Service
|
|
|
public class FilesServiceImpl extends ServiceImpl<FilesMapper, Files> implements FilesService {
|
|
@@ -57,7 +53,8 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, Files> implements
|
|
|
String fileUuid = timestamp + "A" + String.format("%04d", monthIncrement) + "." + type;
|
|
|
|
|
|
// 将相对路径转化为绝对路径
|
|
|
- String destPath = new File(filesUploadPath + "/" + yearMonth).getAbsolutePath();
|
|
|
+// String destPath = new File(filesUploadPath + "/" + yearMonth).getAbsolutePath();//绝对路径
|
|
|
+ String destPath = filesUploadPath + "/" + yearMonth;
|
|
|
|
|
|
// 新的文件地址,绝对路径+新的文件名称
|
|
|
File uploadFile = new File(destPath + "/" + fileUuid);
|
|
@@ -73,7 +70,7 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, Files> implements
|
|
|
file.transferTo(uploadFile);
|
|
|
|
|
|
// 设置文件url
|
|
|
- String url = filesUploadDomain + filesPrefix + "/" + fileUuid;
|
|
|
+ String url = filesUploadDomain + filesPrefix + "/" + yearMonth + "/" + fileUuid;
|
|
|
|
|
|
// 将文件存储到数据库
|
|
|
Files saveFile = new Files();
|
|
@@ -149,13 +146,4 @@ public class FilesServiceImpl extends ServiceImpl<FilesMapper, Files> implements
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- //通过文件MD5查询文件
|
|
|
- private Files getFileByMD5(String md5) {
|
|
|
- //查找数据库是否已经存在一样的图片
|
|
|
- QueryWrapper<Files> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("md5", md5);
|
|
|
- List<Files> filesList = list(queryWrapper);
|
|
|
- return filesList.size() == 0 ? null : filesList.get(0);
|
|
|
- }
|
|
|
}
|