zoukankan      html  css  js  c++  java
  • springboot整合thymeleaf手动渲染

    Thymeleaf手动渲染

    为提高页面访问速度,可缓存html页面,客户端请求从缓存获取,获取不到再手动渲染

    在spring4下

    @Autowired
        ThymeleafViewResolver thymeleafViewResolver;
        
        @Autowired
        ApplicationContext applicationContext;
    public String list(HttpServletRequest request, HttpServletResponse response, Model model) {
            
            //取缓存
            String html = redisService.get("goods_list", String.class);
            if(!StringUtils.isEmpty(html)) {
                return html;
            }
            //获取商品列表
            List<GoodsVo> goodsList = goodsService.listGoodsVo();
            model.addAttribute("goodsList", goodsList);
            //手动渲染
            SpringWebContext ctx = new SpringWebContext(request,response,
                    request.getServletContext(),request.getLocale(), model.asMap(), applicationContext );
            html = thymeleafViewResolver.getTemplateEngine().process("goods_list", ctx);
            //写缓存
            if(!StringUtils.isEmpty(html)) {
                redisService.set("goods_list", html);
            }
            return html;
    
    
     @Autowired
        private ThymeleafViewResolver thymeleafViewResolver;
    
    SpringWebContext ctx = new SpringWebContext(request, response, request.getServletContext(), request.getLocale(),
                    model.asMap(), applicationContext);
    // 手动渲染
    html = thymeleafViewResolver.getTemplateEngine().process("这里写html页面名称", ctx);

    在spring5

    @Autowired
        ThymeleafViewResolver thymeleafViewResolver;
    model.addAttribute("user", user);
            //查询商品列表
            List<GoodsVo> goodsList = goodsService.listGoodsVo();
            model.addAttribute("goodsList", goodsList);
            String html = redisService.get(GoodsKey.getGoodsList, "", String.class);
            if (!StringUtils.isEmpty(html)){
                return html;
            }
    
    
            WebContext ctx = new WebContext(request,response,request.getServletContext(),
                    request.getLocale(),model.asMap());
            thymeleafViewResolver.getTemplateEngine().process("goods_list",ctx);
    
    
            return "goods_list";
    
    
     @Autowired
        private ThymeleafViewResolver thymeleafViewResolver;
    
    
    WebContext ctx = new WebContext(request,response,request.getServletContext(),request.getLocale(),model.asMap());
    // 手动渲染
    html = thymeleafViewResolver.getTemplateEngine().process("这里写html页面名称", ctx);
  • 相关阅读:
    iPhone SDK开发基础之UIPageControl编程
    Ubuntu Linux从初学到精通
    软件架构经验总结
    CMS之图片管理(3)
    如何将简单CMS后台管理系统示例转换为Java、Php等不同后台语言的版本
    CMS之图片管理(5)
    CMS之图片管理(4)
    iphone4s中cocos2d出现闪屏,花屏的解决方案
    CMS之图片管理(1)
    5 个常用的软件质量指标
  • 原文地址:https://www.cnblogs.com/xiufengchen/p/11653726.html
Copyright © 2011-2022 走看看