Springboot 图片

Springboot 图片
因为 server.servlet.context-path: /api
所以 url是这个的时候 http://127.0.0.1:9100/api/staticfiles/image/dd56a59d-da84-441a-8dac-1d97f9e42090.jpeg
配置代码的前面的 /api 是不要写的

package com.gk.study.config;

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

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
 
        registry.addResourceHandler("/staticfiles/**").addResourceLocations("file:D:/proj/java/java_face/server/upload/");

    }

}

你可能感兴趣的:(spring,boot,后端,java)