web开发
文章平均质量分 56
飞飞好奇
Fly For Fun
深入分布式、中间件、系统架构技术研究;
专注互联网金融、互联网文化娱乐行业。
展开
-
thymeleaf模板整合shiro标签
一、引入依赖 org.thymeleaf thymeleaf-spring4 3.0.5.RELEASE com.github.theborakompanioni thymeleaf-extras-shiro 2.0.0二、配置<bean id="templateResolver" class="z3.dbus.web.mvc.Z3ThymeleafV原创 2017-04-07 13:43:19 · 13414 阅读 · 2 评论 -
spring建立websocket例子
1、依赖包 org.springframework spring-websocket ${org.springframework-version}2、配置文件 3、前端js建立连接 var websocket = null; /* if('WebSocket' in window) { websocket = new WebSocket("ws://原创 2017-04-18 21:13:46 · 724 阅读 · 1 评论 -
Thymeleaf 标签学习(一)
th:abbr th:accept th:accept-charsetth:accesskey th:action th:alignth:alt th:archive th:audioth:autocomplete th:axis th:backgroundth:bgcolor th:border th:cellpaddingth:cel原创 2017-05-06 10:11:21 · 325 阅读 · 0 评论 -
Thymeleaf 标签学习(二)
th:datath:datetime th:dir th:draggableth:dropzone th:enctype th:forth:form th:formaction th:formenctypeth:formmethod th:formtarget th:frameth:frameborder th:headers th:he原创 2017-05-06 10:13:08 · 458 阅读 · 0 评论 -
Thymeleaf 标签学习(三)
th:optimumth:pattern th:placeholder th:posterth:preload th:radiogroup th:relth:rev th:rows th:rowspanth:rules th:sandbox th:schemeth:scope th:scrolling th:sizeth:sizes原创 2017-05-06 10:14:57 · 908 阅读 · 0 评论 -
Spring4 @EnableWebMvc 纯注解启动
Spring4 @EnableWebMvc 纯注解启动一、WebConfig想要以Java形式定制默认的配置,你可以简单的实现WebMvcConfigurer接口,或者继承WebMvcConfigurerAdapter并重写需要的方法@Configuration表示这是Java配置类;@EnableWebMvc注解用于启动Spring MVC特性。package com.my;原创 2018-01-30 17:28:57 · 6198 阅读 · 1 评论 -
从构建分布式秒杀系统聊聊WebSocket推送通知
前言秒杀架构到后期,我们采用了消息队列的形式实现抢购逻辑,那么之前抛出过这样一个问题:消息队列异步处理完每个用户请求后,如何通知给相应用户秒杀成功?场景映射首先,我们举一个生活中比较常见的例子:我们去银行办理业务,一般会选择相关业务打印一个排号纸,然后就可以坐在小板凳上玩着手机,等待被小喇叭报号。当小喇叭喊到你所持有的号码,就可以拿着排号纸去柜台办理自己的业务。这里,假设当我们...转载 2018-09-26 18:23:50 · 218 阅读 · 0 评论 -
Servlet相关学习
servlet2.3规范2.2.1servlet引擎可以声明多个实例去处理请求,servlet在应用服务的部署描述中定义发布.serlvet有两个实现类GenericServlet 和 HttpServletservletapi 不会去管是单实例 还是多实例,是由框架和容器来控制的。1、struts2的action为多实例2、spring的Bean是单实例,不过从2.5开始...原创 2019-01-11 11:07:56 · 185 阅读 · 0 评论