欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

Springboot通过url访问本地图片代码实例

时间:2021-04-13 09:12:30|栏目:JAVA代码|点击:

1.引入jar包

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
</dependency>

2.创建配置类

package com.common.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * @BelongsProject: demo
 * @Author: DanBrown
 * @CreateTime: 2020-03-28 14:33
 * @description: TODO
 */
@Configuration
public class WebConfig implements WebMvcConfigurer {
  @Value("${upload.path}")
  private String uploadPath;

  @Override
  public void addResourceHandlers(ResourceHandlerRegistry registry) {
    // /home/file/**为前端URL访问路径 后面 file:xxxx为本地磁盘映射
    registry.addResourceHandler("/home/file/**").addResourceLocations("file:C:" + uploadPath);
  }
}

3. 访问

http://localhost:8080/home/file/820123.png

上一篇:Springboot实现Java邮件任务过程解析

栏    目:JAVA代码

下一篇:详解Java编程的Observer观察者设计模式

本文标题:Springboot通过url访问本地图片代码实例

本文地址:http://www.codeinn.net/misctech/100136.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有