页面定制测试

.cnblogs-markdown .hljs
{
display: block;
overflow-x: auto;
padding: 0.5em;
background: rgb(255,253,141);
background: linear-gradient(142deg, rgba(255,253,141,1) 0%, rgba(252,183,255,1) 35%, rgba(144,236,255,1) 100%);
color:#250482;
}
前言:本来手头开发的项目在本地(windows环境)已经开发并测试完了,没有问题,之后改为部署到linux进行测试,部署后发现资源上传全部出现了异常(其它功能没有问题),着实头疼,耗费半天时间左右终于解决 记录一下并分享给遇到相同问题的朋友

(备注:filePath是传过来的classpath加上业务的路径 )

这是最初的上传代码 功能相对比较简单 利用封装的二进制对象进行流的传输

该代码在win下是没问题的

但是查看日志发现在linux下目录就变成了奇怪的/home/cnki/项目名字/deployer/tomcat/work/Tomcat/localhost/knmarket-manage-api/file:/home/cnki/项目名字/项目名字.jar!/BOOT-INF/classes!/static/upload/product/pdf/-bash: !/BOOT-INF/classes!/static/upload/product/pdf/

查阅资料了解到因为项目是在linux下以jar方式运行的 而之前的逻辑是上传到项目中的static目录 可是现在项目是jar方式启动的所以根本不可能将资源上传到jar包中了 jar方式运行的项目上传的默认路径就是这种deployer/tomcat/work临时路径

明白了原因后开始对症下药,首先对当前运行的系统进行判断,如果是在linux下就获取当前jar运行的目录,并在该同级目录下新建static作为资源映射目录,上传和访问都指向该新的目录##即可

public static boolean uploadFile(String filePath, String fileName, MultipartFile multipartFile) {
    String osname = System.getProperties().getProperty("os.name");
    File file = null;
    File fileSource = new File(file, fileName);
    try {
        if(osname.toLowerCase().contains("windows")){
            file = new File(filePath);
            if (!file.exists()) {
                file.mkdirs();
            }
            multipartFile.transferTo(new File(filePath, fileName));
        }else if(osname.toLowerCase().contains("linux")){
            String runPath = new File(ResourceUtils.getURL("classpath:").getPath()).getParentFile().getParentFile().getParent().replace("file:", "");
            String tempPath[] = filePath.split("/static");
            file = new File(runPath + "/static" + tempPath[tempPath.length - 1]);
            if (!file.exists()) {
                file.mkdirs();
            }
            multipartFile.transferTo(new File(runPath + "/static" + tempPath[tempPath.length - 1] + fileName));
        }
    } catch (IOException e) {
        log.error("上传文件失败");
        e.printStackTrace();
        return false;
    }
    return true;
}

Linux系统下首先获取到jar运行的路径:runPath
new File(runPath + "/static" + tempPath[tempPath.length - 1]);//这一行是为了 拿到之前上传到项目中的路径 并判断路径是否存在 该路径就是服务器上运行的jar同级目录下的static/../...

至此服务器已经可以正常存取资源到相应目录下了 以下为示例:

假设/home/ins/下有运行的
demo.jar项目  static目录
如上代码最终在服务器上的
  上传目录为:/home/ins/static/img/main/
  访问目录为:http://ip:port/项目名字/img/main/(springBoot的默认静态资源映射目录就是classpath下的static)

最终屁颠屁颠跑到vue前台进行测试

发现图片终于可以正常存储并获取了(长舒一口气ε=(′ο`*)))唉不容易)

结语:新人第一次发博客 本文如存在理解有偏差或错误观点,欢迎朋友们指出

页面定制测试

上一篇:01DIX运行机制


下一篇:OpenCV 图像集合操作