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