springboot訪問靜態資源遇到的坑

開始是以這種結構進行的,結果頁面上一篇紅,訪問的頁面是這樣的web

最終找出來問題,雖然每次調整路徑都不對,最終查看多種方法能夠看到了:spring

增長:ide

package com.example.demo.config;

import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;



@Component
public class WebConfig implements WebMvcConfigurer {
/*
     * 添加靜態資源文件,外部能夠直接訪問地址
     *
     * @param registry
     */

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
    }
}

這樣就能夠地方問到了:spa

相關文章
相關標籤/搜索