springboot 使用webjars打包静态资源模块

依赖

<dependency>
   <groupId>org.webjars</groupId>
    <artifactId>webjars-locator</artifactId>
    <version>0.39</version>
</dependency>

maven build 配置

<build>
    <resources>
        <resource>
            <directory>${project.basedir}/src/main/resources/static</directory>
            <targetPath>${project.build.outputDirectory}/META-INF/resources/webjars</targetPath>
        </resource>
    </resources>
</build>

使用模块中的静态资源

/webjars/xxx

posted on 2022-04-11 22:40  路过君  阅读(127)  评论(0编辑  收藏  举报

导航