欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot项目图片上传,不能立即回显问题(已解决)

程序员文章站 2022-07-10 18:10:34
...

问题如下
springboot项目图片上传,不能立即回显问题(已解决)
当上传一个图片,是这样显示的。

我的解决方案

1.将springboot配置成热部署(后来发现其实不需要)
pom.xml加入

<dependency>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-devtools</artifactId>

    <optional>true</optional>

</dependency>

在yml中添加
注意:devtools 和freemarker是属于spring中的

  devtools:
    restart:
      enabled: true
  freemarker:
    cache: false
debug: true

2.建立config实现WebMvcConfigurer重写addResourceHandlers

@Configuration
public class MyWebConfig implements WebMvcConfigurer {
    //设置静态文件的目录
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry){
        registry.addResourceHandler("/uploadImg/**").addResourceLocations("file:E:/idea/nlxx/hhxx/src/main/resources/static/uploadImg/");
    }
}

然后重启,上传OK

springboot项目图片上传,不能立即回显问题(已解决)

相关标签: 图片回显