解决 spring boot Failed to decode downloaded font

一个静态资源加载的问题反反复复的解决了挺久,现在找到了解决方法,分享如下

<build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <excludes>
                    <exclude>**/*.java</exclude>
                </excludes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

  重点是  src/main/resources  不要过滤

<resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
            </resource>

  

原文地址:https://www.cnblogs.com/yachao1120/p/12538978.html