springboot系列
tanleijin
这个作者很懒,什么都没留下…
展开
-
springboot①集成thymeleaf支持不规范的HTML
最近在写springboot的项目,遇到了一些问题,与大家分享一下。因为thymeleaf是springboot推荐的模板引擎,所以选择了thymeleaf。集成很简单,直接添加maven依赖: pom文件加入下面内容即可:<dependency> <groupId>org.springframework.boot</group...原创 2018-07-05 18:54:26 · 735 阅读 · 0 评论 -
springboot②最正确的集成shiro并使用ehcache缓存
springboot集成shiro和ehcache的时候,要先集成ehcache然后再集成shiro,这样当shiro配置cacheManager的时候就可以直接使用了。下面是正确的集成步骤:第一步集成ehcache:1.在pom.xml文件中引入以下依赖 <!--开启 cache 缓存--> <dependency> ...原创 2018-07-19 18:40:44 · 30074 阅读 · 9 评论 -
springboot③整合shiro, @Autowired失效
springboot在集成shiro的时候,要编写realm。错误实例:/* //有可能是注入失败的 @Autowired UserDao userMapper; @Autowired MenuService menuService;*/ /** * 授权 * @param arg0 * @return */ @Override protected Autho...原创 2018-07-19 18:58:14 · 818 阅读 · 0 评论 -
springboot最正确的集成websocket并使用shiro用户信息
最近在springboot项目中用到了websocket实现待办事项的实时提醒,在集成websocket中踩了好几个坑,还好通过我的聪明才智解决了,特此记录一下。1.引入依赖,在pom文件中加依赖。由于springboot提供了websocket的starter 所以在pom中直接加依赖 <!--websocket--> ...原创 2018-09-17 09:27:39 · 13878 阅读 · 10 评论 -
springboot集成websocket通过自定义注解+切面实现实时消息提醒
上一篇文章介绍springboot如何集成websocket,而我们的需求是当上一个人审核通过了下一个人能实时的收到提醒。所有还需要进一步的升级,实现思路:①在上一个人审核操作的方法上打上一个aop拦截的自定义注解②在aop中执行发送消息操作1.自定义注解/** * (描述该文件) * @author tlj * @date 2018年9月15日 上午10:37:3...原创 2018-09-17 10:11:42 · 2902 阅读 · 0 评论 -
springboot中整合POI实现上传数据导入
1.添加pom依赖<!--poi --><dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.17</version></dependency&...原创 2019-07-01 15:28:38 · 971 阅读 · 0 评论 -
springboot2集成security实现自定义页面登录
springboot2集成security实现自定义页面登录security的基本介绍前提说明引入security框架配置security实现自定义登录securityPropertiesuserDetailsServicedefaultAuthenticationSuccessHandlerdefaultAuthenticationFailureHandlerR返回结果封装类前台页面总结sec...原创 2019-09-10 16:07:25 · 4825 阅读 · 0 评论