天天看点

SpringBoot2.0(二):WebJars的使用

WebJars:

    • 一、优点:
    • 二、官网:
    • 三、使用:
      • 1、首先在 WebJars官网 找到项目所需的依赖:
      • 2、复制到pom.xml中:
      • 3、访问静态资源
      • 4、html页面引用

一、优点:

1、将静态资源版本化,更利于升级和维护。

2、剥离静态资源,提高编译速度和打包效率。

3、方便静态文件的统一管理。

二、官网:

https://www.webjars.org

三、使用:

1、首先在 WebJars官网 找到项目所需的依赖:

SpringBoot2.0(二):WebJars的使用

2、复制到pom.xml中:

SpringBoot2.0(二):WebJars的使用

3、访问静态资源

http://127.0.0.1/webjars/bootstrap/4.3.1/css/bootstrap.min.css

SpringBoot2.0(二):WebJars的使用

4、html页面引用

SpringBoot2.0(二):WebJars的使用
SpringBoot2.0(二):WebJars的使用

继续阅读