spring Boot 2.1 替换web默认图标

说明:我的是target  下ico  文件直接损坏了是因为被profile 过滤了(还是先看看你路径错了没,这个配置是 你打包的时候 target  下 favicon.ico 文件都不可以正常预览的这种情况)

pom.xm  加入如下代码 

      
                src/main/resources
                
                  
                    **/*.ico
                
                true
            
            
                src/main/resources
                
                   
                    **/*.ico
                
                false
            

yml:

 mvc:
    favicon:
      enabled: false

然后文件放在static  任意位置   正确引入即可 

你可能感兴趣的:(spring,boot,配置)