SpringBoot引用font awesome不显示问题的解决

在springboot中利用bootstrap进行编写注册时,发现icon图标不能显示,从百度上也查找解决办法,大多数都是采用以下办法,却依然不能显示:


       ${project.basedir}/src/main/resources
       true
       
           static/fonts/**
       
   
   
       ${project.basedir}/src/main/resources
       false
       
           static/fonts/**
       
   

而我的解决办法是在pom.xml配置文件中添加以下代码


        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    true

                
            
            
                org.apache.maven.plugins
                maven-resources-plugin
                
                    
                        woff
                        woff2
                        eot
                        ttf
                        svg
                    
                
            
        
    

你可能感兴趣的:(SpringBoot引用font awesome不显示问题的解决)