服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - 基于Springboot2.3访问本地路径下静态资源的方法(解决报错:Not allowed to load local resource)

基于Springboot2.3访问本地路径下静态资源的方法(解决报错:Not allowed to load local resource)

2020-08-13 00:14Verm�celli丶 Java教程

这篇文章主要介绍了基于Springboot2.3访问本地路径下静态资源的方法(解决报错:Not allowed to load local resource),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学

最近在做的一个项目中有一个比较奇葩的需求:

要在springboot中,上传本地的图片进行展示

我的第一反应是,直接在数据库字段加一个存储本地路径的字段,然后用thymeleaf的th:src渲染到前端就好了嘛!

理想很丰满,但现实却很骨感~

前端报了这样的错误Not allowed to load local resource

基于Springboot2.3访问本地路径下静态资源的方法(解决报错:Not allowed to load local resource)

于是我想到了可以使用IO将图片先上传到static/images目录下,这样就不会出现禁止访问本地路径的问题了

但是这样实现,问题又来了:上传后的图片必须重启springboot,才能进行展示,否则无法加载

这个应该是因为springboot在初始化时加载静态资源,运行时导入的资源只能在再次初始化时加载

于是,我苦思冥想,查阅了多方资料,终于使用本地虚拟路径的方式,解决了这个问题

正片开始:

1.首先配置一个配置类

?
1
2
3
4
5
6
7
8
9
10
11
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
 
@Configuration
public class MyConfigurer implements WebMvcConfigurer {
  @Override
  public void addResourceHandlers(ResourceHandlerRegistry registry) {
    registry.addResourceHandler("/image/**").addResourceLocations("file:E:/vote_images/");
  }
}

addResourceHandler是指你设置的虚拟路径,前端展示页面时填入这个路径来进行访问

addResourceLocations是指实际的本地路径,你需要代理给虚拟路径来访问的路径

2. IO实现文件上传

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//如果文件夹不存在,创建文件夹
File file=new File("E:\\vote_images");
if(!file.exists()){
  file.mkdir();
}
//文件的上传
try (InputStream input = new FileInputStream(new File(judge));
   OutputStream output = new FileOutputStream("E:\\vote_images\\" + num + ".jpg")
   ) {
  byte[] buf = new byte[1024];
  int bytesRead;
  while ((bytesRead = input.read(buf)) != -1) {
    output.write(buf, 0, bytesRead);
  }
} catch (IOException e) {
  e.printStackTrace();
}
//设置路径字段
o.setPath("\\image\\" + (num++) + ".jpg");
//增加数据
optionsService.insert(o);

3.前端渲染页面

?
1
<img height="150px" width="225px" th:src="@{${opt.getPath()}}">

这样就成功实现需求啦

到此这篇关于基于Springboot2.3访问本地路径下静态资源的方法的文章就介绍到这了,更多相关Springboot2.3访问本地静态资源内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/YzVermicelli/article/details/106618800

延伸 · 阅读

精彩推荐