Java设置服务器图片

现做app需要用到图片,但不想放到app项目代码中,于是想到设置服务器图片,app中设置访问路径,加载图片,路径也可以设置为变量,方便变更

服务器代码添加类

package hs.hsapp.util;

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 ResourcesConfig implements WebMvcConfigurer {

@Override

public void addResourceHandlers(ResourceHandlerRegistry registry) {

/** 通过url访问项目外的目录图片*/

registry.addResourceHandler("/mgg/**").addResourceLocations("file:E://tmpimg/");

}}

创建本地目录e://tmpimg, 用于存放图片文件

mgg 访问路径, e://tmpimg图片物理路径

Security配置类 添加类型过滤
重启服务,访问测试

https://localhost: 8080/mgg/denglu.jpg

相关推荐
Lentou8 小时前
日志轮询策略
linux·服务器·网络
凯瑟琳.奥古斯特9 小时前
SQLAlchemy核心功能解析
开发语言·python·flask
卷Java9 小时前
GPTQ vs AWQ vs GGUF:模型量化工具横向测评
开发语言·windows·python
你好,帅哥9 小时前
openssl ,msys2 ,交叉编译
linux·运维·服务器
charlie1145141919 小时前
嵌入式C++工程实践第20篇:GPIO 输入模式内部电路 —— 芯片是如何“听“到外部信号的
开发语言·c++·stm32·单片机
消失的旧时光-19439 小时前
Spring Boot 工程化进阶:统一返回 + 全局异常 + AOP 通用工具包
java·spring boot·后端·aop·自定义注解
NE_STOP9 小时前
Redis--发布订阅命令和Redis事务
java
PAC_3Dame9 小时前
记一次真实的线上OOM
java
xinhuanjieyi10 小时前
极语言让ai学习的方法
开发语言·学习
SunnyDays101110 小时前
如何在Java中将Word文档转换为图像(JPEG、PNG或SVG)
java