Thymeleaf使用说明

Thymeleaf使用说明

javascript操作:

a.

    js附加代码:
    /*[+
    var msg = 'This is a working application';
    +]*/

    js移除代码:
    /*[- */
    var msg = 'This is a non-working template';
    /* -]*/
    模板缓存:
    1、指定特定的缓存:
    templateResolver.setCacheable(false);
    templateResolver.getCacheablePatternSpec().addPattern("/users/*");
    2、清除缓存:
    templateEngine.clearTemplateCache();
    templateEngine.clearTemplateCacheFor("/users/userList"); 

  

转载于:https://www.cnblogs.com/airycode/p/6511461.html

你可能感兴趣的:(Thymeleaf使用说明)