SpringBoot webjars 映射

添加静态资源映射

    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
    }
原文地址:https://www.cnblogs.com/ldl326308/p/12013941.html