springboot通过url访问本地文件

启动服务后在浏览器输入url,访问本地的文件——图片、TXT文件···

@Configuration
public class MyWebMvcConfigurer extends WebMvcConfigurationSupport {

	@Override
	public void addResourceHandlers(ResourceHandlerRegistry registry) {
		//                          访问路径                         图片本地地址
		registry.addResourceHandler("/img/**").addResourceLocations("file:D:/@huangzixiao/img/");
		super.addResourceHandlers(registry);
	}

}

启动类

@SpringBootApplication
@MapperScan("testmaven04dev.com.hzx.dev.dao")
@ComponentScan({"testmaven04dev.com.hzx.dev"})
public class DevStartApplication {
	public static void main(String[] args) throws Exception {
		SpringApplication.run(DevStartApplication.class, args);
	}
}

@ComponentScan({“testmaven04dev.com.hzx.dev”})注解扫描文件,否则可能出现MyWebMvcConfigurer.java文件中@Configuration无效的情况。


如果将注解写为:@ComponentScan({“testmaven04dev.com.hzx.dev.config”}),config为MyWebMvcConfigurer类所在包,则有可能出现controller路径404的错误


效果
在这里插入图片描述
在这里插入图片描述

  • 3
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值