基于jawr的springboot+springmvc+thymeleaf的web静态文件压缩方案

Posted Lambda在线

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于jawr的springboot+springmvc+thymeleaf的web静态文件压缩方案相关的知识,希望对你有一定的参考价值。

基于jawr的springboot+springmvc+thymeleaf的web静态文件压缩方案

1. 主要用到的依赖:

 
   
   
 
  1. ```

  2. <dependency>

  3.        <groupId>com.github.dtrunk90</groupId>

  4.        <artifactId>thymeleaf-jawr-extension</artifactId>

  5.        <version>2.0.2</version>

  6.    </dependency>

  7.    <dependency>

  8.        <groupId>net.jawr</groupId>

  9.        <artifactId>jawr-core</artifactId>

  10.        <version>3.9</version>

  11.    </dependency>

  12. ```

2. 与spring集成example可参考: https://github.com/j-a-w-r/jawr-spring/tree/master/jawr-spring-extension

3. jawr core源码分析:

主要通过 JawrSpringController初始化 JawrRequestHandler,这个handler是整个静态文件压缩初始化的入口

 
   
   
 
  1.    public JawrRequestHandler(ServletContext context, Map<String, Object> initParams, Properties configProps)

  2.    throws ServletException {

  3.        this.initParameters = initParams;

  4.        initRequestHandler(context, configProps);

  5.    }

  6.    /**

  7.     * Initialize the request handler

  8.     *

  9.     * @param context

  10.     *            the servlet context

  11.     * @param configProps

  12.     *            the configuration properties

  13.     * @throws ServletException

  14.     *             if an exception occurs

  15.     */

  16.    private void initRequestHandler(ServletContext context, Properties configProps) throws ServletException {}

initRequestHandler 调用

 
   
   
 
  1. rotected void initializeJawrContext(Properties props) throws ServletException

  2. // Initialize config

  3. initializeJawrConfig(props);

  4. bundlesHandler = factory.buildResourceBundlesHandler();

  5. //PropertiesBasedBundlesHandlerFactory

  6. public ResourceBundlesHandler buildResourceBundlesHandler()

  7.            throws DuplicateBundlePathException, BundleDependencyException {

  8.        return factory.buildResourceBundlesHandler();

  9.    }

  10. // BundlesHandlerFactory    

  11. public ResourceBundlesHandler buildResourceBundlesHandler()

  12.            throws DuplicateBundlePathException, BundleDependencyException{

  13.            ...

  14.            // Use the cached proxy if specified when debug mode is off.

  15.        if (useCacheManager && !jawrConfig.isDebugModeOn())

  16.            collector = new CachedResourceBundlesHandler(collector);

  17.        //这里是初始化入口

  18.        collector.initAllBundles();

  19.        return collector;

  20.            }

压缩后的临时文件的存放目录 AbstractResourceBundleHandler

 
   
   
 
  1.    /** The path of the temporary working directory */

  2.    protected String tempDirPath;

  3.    /** The path of the directory which contain the bundles in text format */

  4.    protected String textDirPath;

  5.    /** The path of the directory which contain the bundles in gzip format */

  6.    protected String gzipDirPath;

tempDirPath 路径:javax.servlet.context.tempdir 的目录

4.集成spring boot

jawr的配置文件:放到 aplication.properties

 
   
   
 
  1. ##### Common properties #####

  2. jawr.debug.on=false

  3. gzip压缩

  4. jawr.gzip.on=true

  5. jawr.gzip.ie6.on=false

  6. jawr.charset.name=UTF-8

  7. #使用md5生成hashcode

  8. jawr.bundle.hashcode.generator=MD5

  9. jawr.use.generator.cache=false

  10. jawr.use.smart.bundling=true

  11. jawr.use.bundle.mapping=true

  12. # javascript properties and mappings

  13. #压缩文件目录 也就是上面tempDirPath路径下的 /js 子目录

  14. jawr.js.bundle.basedir=/js

  15. jawr.js.bundle.bundlepostprocessors=JSMin

  16. #id 是标签src属性用的  mappings是静态文件路径

  17. #id 格式必须是jawr.js.bundle.名字.id 的格式

  18. # 路径映射 jawr.js.bundle.名字.mappings

  19. # jar:static/js/jquery-1.9.1.min.js jar:后面是静态文件路径 也就是web项目根目录下的 static 目录

  20. # 多个路径用逗号分开 jar:static/js/addRead.js,jar:static/js/pc_detail.js

  21. jawr.js.bundle.jquery.id= bundleid

  22. jawr.js.bundle.jquery.mappings=jar:static/js/jquery-1.9.1.min.js

  23. # CSS properties and mappings

  24. jawr.css.bundle.basedir=/css

  25. jawr.css.bundle.bundlepostprocessors=cssminify,base64ImageEncoder

  26. jawr.css.bundle.filepostprocessors=base64ImageEncoder

  27. jawr.css.bundle.pcindex.id= bundleid

  28. jawr.css.bundle.pcindex.mappings=jar:static/css/index.css

5.集成thymeleaf

依赖扩展: thymeleaf-jawr-extension

 
   
   
 
  1. // src 就是 上面配置的 bundleid

  2. <script jawr:src="bundleid"></script>

主要优势:

1.对网络交互的数据进行压缩,比如对JS,CSS,图片等。通过去除空行,空格,换行符,注释,变量名混淆可以大大减少JS和CSS文件大小。常用的压缩工具有JSMin, YuiCompressor,Packer,Microsoft Ajax Minifier和UglifyJS。对于第三方的JS,我们可以预先对其压缩。但对于自己开发的JS,为了可读性和可维护性,我们只能在项目部署的时候压缩。JAWR默认的JS压缩器为JSMIN,CSS的压缩器为CSS Compressor,可选的配置为YuiCompressor(支持JS和CSS)。

2.可以合并所有的JS文件,合并所有的CSS文件。我们知道浏览器下载一个10K的文件,比下载10个1K的文件的速度要快很多,因为浏览器和服务端每次交互都会发送Request Header,服务器响应也会有Response Header,另外下载一个文件只需要建立一次网络连接,而10个文件则要建立10次网络连接,这个比较耗时。

3.对图片Base64编码嵌入html页面。减少网络交互次数。

4.应用启动时压缩静态文件,静态文件可以用hash索引,发生变化的文件才会改变hash便于缓存, 生产和开发环境可以通过 jawr.debug.on=false配置就行了


以上是关于基于jawr的springboot+springmvc+thymeleaf的web静态文件压缩方案的主要内容,如果未能解决你的问题,请参考以下文章

springboot从入门到精通

SpringBoot整合themeleaf+bootstrap

CAS 5.3.1系列之使用cas overlay搭建服务端

面试高频题:springboot自动装配的原理你能说出来吗?

错误信息:Bean property 'sessionFactory' is not writable or has an invalid setter method.(Springm

基于Mysql数据库的SSM分页查询