|
|
@@ -1,4 +1,4 @@
|
|
|
-package com.ruoyi.web.controller.common;
|
|
|
+package com.yourcompany.web.controller.common;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
@@ -13,18 +13,18 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
-import com.ruoyi.common.config.RuoYiConfig;
|
|
|
-import com.ruoyi.common.constant.Constants;
|
|
|
-import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
-import com.ruoyi.common.utils.StringUtils;
|
|
|
-import com.ruoyi.common.utils.file.FileUploadUtils;
|
|
|
-import com.ruoyi.common.utils.file.FileUtils;
|
|
|
-import com.ruoyi.framework.config.ServerConfig;
|
|
|
+import com.yourcompany.common.config.AppPlatformConfig;
|
|
|
+import com.yourcompany.common.constant.Constants;
|
|
|
+import com.yourcompany.common.core.domain.AjaxResult;
|
|
|
+import com.yourcompany.common.utils.StringUtils;
|
|
|
+import com.yourcompany.common.utils.file.FileUploadUtils;
|
|
|
+import com.yourcompany.common.utils.file.FileUtils;
|
|
|
+import com.yourcompany.framework.config.ServerConfig;
|
|
|
|
|
|
/**
|
|
|
* 通用请求处理
|
|
|
*
|
|
|
- * @author ruoyi
|
|
|
+ * @author yourcompany
|
|
|
*/
|
|
|
@RestController
|
|
|
@RequestMapping("/common")
|
|
|
@@ -53,7 +53,7 @@ public class CommonController
|
|
|
throw new Exception(StringUtils.format("文件名称({})非法,不允许下载。 ", fileName));
|
|
|
}
|
|
|
String realFileName = System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1);
|
|
|
- String filePath = RuoYiConfig.getDownloadPath() + fileName;
|
|
|
+ String filePath = AppPlatformConfig.getDownloadPath() + fileName;
|
|
|
|
|
|
response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);
|
|
|
FileUtils.setAttachmentResponseHeader(response, realFileName);
|
|
|
@@ -78,7 +78,7 @@ public class CommonController
|
|
|
try
|
|
|
{
|
|
|
// 上传文件路径
|
|
|
- String filePath = RuoYiConfig.getUploadPath();
|
|
|
+ String filePath = AppPlatformConfig.getUploadPath();
|
|
|
// 上传并返回新文件名称
|
|
|
String fileName = FileUploadUtils.upload(filePath, file);
|
|
|
String url = serverConfig.getUrl() + fileName;
|
|
|
@@ -104,7 +104,7 @@ public class CommonController
|
|
|
try
|
|
|
{
|
|
|
// 上传文件路径
|
|
|
- String filePath = RuoYiConfig.getUploadPath();
|
|
|
+ String filePath = AppPlatformConfig.getUploadPath();
|
|
|
List<String> urls = new ArrayList<String>();
|
|
|
List<String> fileNames = new ArrayList<String>();
|
|
|
List<String> newFileNames = new ArrayList<String>();
|
|
|
@@ -146,7 +146,7 @@ public class CommonController
|
|
|
throw new Exception(StringUtils.format("资源文件({})非法,不允许下载。 ", resource));
|
|
|
}
|
|
|
// 本地资源路径
|
|
|
- String localPath = RuoYiConfig.getProfile();
|
|
|
+ String localPath = AppPlatformConfig.getProfile();
|
|
|
// 数据库资源地址
|
|
|
String downloadPath = localPath + StringUtils.substringAfter(resource, Constants.RESOURCE_PREFIX);
|
|
|
// 下载名称
|