Spring Boot2.0中SpringWebContext找不到无法使用的解决方法
前言
为了应对在springboot中的高并发及优化访问速度,我们一般会把页面上的数据查询出来,然后放到redis中进行缓存。减少数据库的压力。
在springboot中一般使用
thymeleafviewresolver.gettemplateengine().process("goodlist", ctx);
进行页面的渲染,而这个ctx就是springwebcontext对象,我们一般进行如下获取:
springwebcontext swc=new springwebcontext(request,response,request.getservletcontext(),request.getlocale(),model.asmap(),applicationcontext);
在springboot 1.x的版本中以上代码可以使用。但在springboot 2.0中,就无法找到springwebcontext了。那应该如何去解决这个问题呢?
解决思路
说一下我的思路,.process方法中ctx所在参数所需要的类型为接口icontext
也就是需要有实现了icontext的类就可以了,然后进入icontext接口找所有的实现类
然后看到webcontext似乎有些像上面所用的springwebcontext。即做出如下改变,完美实现了thymeleaf的页面渲染。
webcontext ctx = new webcontext(request, response, request.getservletcontext(), request.getlocale(), model.asmap()); html = thymeleafviewresolver.gettemplateengine().process("goodlist", ctx);
在springboot 2.0中使用上述代码,可以完全替代。
(当然在下不才,暂时只找到了这种办法,在网络上也没找到对应的比较不错的策略。所以分享出来,以备分享出来,帮助遇到此问题的程序员们。如果大家有什么更好的处理办法可以一起互相交流哦)
目前我正在搞基于springboot、redis、消息队列的秒杀小项目,主要还是为了梳理如何解决高并发的问题过程。
github:https://github.com/iquanzhan/seckillshop (本地上传)
所用技术
1.后端:springboot、jsr303、mybatis
2.前端:thymeleaf、bootstrap、jquery
3.中间件:rabbitmq、redis、druid
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
下一篇: Android播放视频的三种方式
推荐阅读
-
Spring Boot2.0中SpringWebContext找不到无法使用的解决方法
-
Spring Boot2.0中SpringWebContext找不到无法使用的解决方法
-
Spring配置shiro时自定义Realm中属性无法使用注解注入的解决办法
-
Win7启动项找不到ctfmon进程无法正常使用输入法的解决方法
-
Spring配置shiro时自定义Realm中属性无法使用注解注入的解决办法
-
Spring自动扫描无法扫描jar包中bean的解决方法
-
Spring自动扫描无法扫描jar包中bean的解决方法
-
chrome浏览器中无法使用QQ快速登录问题的解决方法
-
chrome浏览器中无法使用QQ快速登录问题的解决方法
-
Cygwin下安装vim后,vim中退格键无法正常使用的解决方法