spring boot文件路徑映射配置


1.添加配置類 

package org.jcut.tools;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Component
public class MvcConfing implements WebMvcConfigurer {
    @Value("${imgpath}")
    String path;
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        
//當請求服務器中帶有/imgs/的時候就是到指定路徑中找出對應名字對應圖片,其中**就代表匹配多層路徑下的名字
registry.addResourceHandler("/imgs/**").addResourceLocations("file:"+path);
    }
}

2.圖片上傳代碼

  //添加展示圖片
          String t_img=UUID.randomUUID().toString();//商品展示圖片id
          boolean flag=false;
          for(MultipartFile ff:file1) {
              String tImgId=UUID.randomUUID().toString();
//寫入圖片名字的時候最好把獲取圖片映射名稱寫進去,方便獲取圖片
              timg.insert(new TImg(tImgId, t_img, "imgs/"+tImgId+".jpg"));
              try {
                ff.transferTo(new File(path+tImgId+".jpg"));
                flag=true;
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } 
          }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM