...
|
...
|
@@ -7,6 +7,7 @@ import com.tianbo.warehouse.util.Date.DateUtil; |
|
|
import com.tianbo.warehouse.util.Helper;
|
|
|
import org.apache.commons.io.FileUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
...
|
...
|
@@ -23,6 +24,8 @@ public class UploadController { |
|
|
@Autowired
|
|
|
private AttachmentService attachmentService;
|
|
|
|
|
|
@Value("${web.upload-path}")
|
|
|
private String uploadPath; // =./upload/
|
|
|
/**
|
|
|
* 单个文件上传
|
|
|
* @param file
|
...
|
...
|
@@ -37,9 +40,8 @@ public class UploadController { |
|
|
String fileLitleName = file.getName();
|
|
|
String fileName = file.getOriginalFilename();
|
|
|
String fileType = fileName.substring((fileName.lastIndexOf(".")));
|
|
|
String saveDir = readProperties("uploadDirectory");
|
|
|
StringBuffer stringBuffer = new StringBuffer();
|
|
|
String saveFileName = stringBuffer.append(saveDir).append("/").append(DateUtil.getToday()).append("/").append(Helper.getUUID()).append(fileType).toString();
|
|
|
String saveFileName = stringBuffer.append(uploadPath).append(DateUtil.getToday()).append("/").append(Helper.getUUID()).append(fileType).toString();
|
|
|
File saveFile = new File(saveFileName);
|
|
|
if(!saveFile.getParentFile().exists()){
|
|
|
saveFile.mkdirs();
|
...
|
...
|
|