欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

spring boot自带图片服务器使用详解

程序员文章站 2024-02-21 11:02:52
我们平时在日常项目中经常会遇到图片的上传和访问的情景,平时我们可能习惯于把图片传到resource或者项项目中的某个位置,这样会有一个缺点,当我们重新项目打包时,这些图片会...

我们平时在日常项目中经常会遇到图片的上传和访问的情景,平时我们可能习惯于把图片传到resource或者项项目中的某个位置,这样会有一个缺点,当我们重新项目打包时,这些图片会丢失。为了解决这一缺点,我们只有把图片的路径放到项目外,而springboot集成了映射项目外路径的这一功能。ps:当然目前一些大的项目,会有多个子系统都用到文件上传和下载,这时搭建文件服务器是最好的选择。

上传的实现请看:spring boot实现图片上传功能 这位大神在里面讲的很详细;

下面请看springboot如何访问项目外的图片:

首先要写个配置类:

application.properties文件中的路径配置如下

cbs.imagespath=file:/e:/imagesuuuu/

配置类如下:

package bp.config;

import org.slf4j.loggerfactory;
import org.springframework.beans.factory.annotation.value;
import org.springframework.context.annotation.configuration;
import org.springframework.web.servlet.config.annotation.interceptorregistry;
import org.springframework.web.servlet.config.annotation.resourcehandlerregistry;
import org.springframework.web.servlet.config.annotation.webmvcconfigureradapter;

/**
 * @classname: webappconfig
 * @description: todo(这里用一句话描述这个类的作用)
 * @author administrator
 * @date 2017年7月11日
 */
@configuration
public class webappconfig extends webmvcconfigureradapter {
   //获取配置文件中图片的路径
 @value("${cbs.imagespath}")
 private string mimagespath;
 //访问图片方法
 @override
 public void addresourcehandlers(resourcehandlerregistry registry) {
  if(mimagespath.equals("") || mimagespath.equals("${cbs.imagespath}")){
   string imagespath = webappconfig.class.getclassloader().getresource("").getpath();
   if(imagespath.indexof(".jar")>0){
    imagespath = imagespath.substring(0, imagespath.indexof(".jar"));
   }else if(imagespath.indexof("classes")>0){
    imagespath = "file:"+imagespath.substring(0, imagespath.indexof("classes"));
   }
   imagespath = imagespath.substring(0, imagespath.lastindexof("/"))+"/images/";
   mimagespath = imagespath;
  }
  loggerfactory.getlogger(webappconfig.class).info("imagespath="+mimagespath);
  registry.addresourcehandler("/images/**").addresourcelocations(mimagespath);
  super.addresourcehandlers(registry);
 }
}

注意:如果项目中有拦截器,一定要添加不要拦截图片路径,方法如下:

@override
 public void addinterceptors(interceptorregistry registry) {
  registry.addinterceptor(new logininterceptor()).addpathpatterns("/api/**").excludepathpatterns("/api/getlogin")
    .excludepathpatterns("/api/getexit");
  super.addinterceptors(registry);

 }

 这样启动项目就可以获取路径下的图片了:访问地址例如:localhost:8080/images/123.png

 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。