利用SpringBoot+Mybatis-Plus+Bootstrap+Vue 上传照片以后无法在HTML显示的问题
首先需要配置虚拟目录
打开如图所示的文件在文件中配置虚拟目录
package cn.jeefast.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
* @description MVC视图配置
*
* @author theodo
* @email 36780272@qq.com
* @date 2017年11月6日 下午5:14:52
*/
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter{
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/imctemp-rainy/**").addResourceLocations("file:E:\\Spring Boot\\jeefast\\jeefast-system\\src\\main\\resources\\static\\img\\upload\\");
}
}
配置完成后需要在拦截器中放开
打开如图所示的文件,
在代码中加入如图所示的代码,不对他进行拦截,否则会报错