springboot项目替换掉默认的小叶子ico

原文地址:https://blog.csdn.net/u010513756/article/details/80239828

在src/main/resources下的static文件夹中放入新的ico即可自动替换 
只要保持文件名为【favicon.ico】无需在appliccation.properties中加spring.mvc.favicon.enabled=false就可以实现(当然,也不需要在每一个html文件中加link那套) 
springboot项目替换掉默认的小叶子ico_第1张图片

需要注意的是如果使用了WebMvcConfigurer(或者相同功能的拦截器)的话,需要加上**.ico以防止拦截器拦截ico文件的访问

registry.addInterceptor(authInterceptor()).addPathPatterns("/**")
        .excludePathPatterns(noInterceptor).excludePathPatterns("/**.html", "/**.ico");

 

之后再访问网页文件将会自动替换掉原先的小叶子(可能要清缓存) 
springboot项目替换掉默认的小叶子ico_第2张图片

你可能感兴趣的:(源码分析/架构深入/开源框架)