上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: Servlet的监听器Listener,它是实现了javax.servlet.ServletContextListener 接口的服务器端程序,它也是 随web应用的启动而启动,只初始化一次,随web应用的停止而销毁。主要作用是: 做一些初始化的内容添加工作、设置一些基本的内容、比如一些参数或者是一 阅读全文
posted @ 2017-11-15 17:29 搜索技术 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 查看远程分支 加上-a参数可以查看远程分支,远程分支会用红色表示出来(如果你开了颜色支持的话): 1 2 3 4 5 6 7 8 9 10 $ git branch -a master remote tungway v1.52 * zrong remotes/origin/master remote 阅读全文
posted @ 2017-11-15 16:33 搜索技术 阅读(23563) 评论(0) 推荐(0) 编辑
摘要: https://git-scm.com/book/zh/v1/Git-%E5%88%86%E6%94%AF-%E5%88%86%E6%94%AF%E7%9A%84%E6%96%B0%E5%BB%BA%E4%B8%8E%E5%90%88%E5%B9%B6 分支的新建与合并 现在让我们来看一个简单的分支 阅读全文
posted @ 2017-11-15 16:24 搜索技术 阅读(320) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/linsongbin1/article/details/54375641 阅读全文
posted @ 2017-11-15 16:07 搜索技术 阅读(133) 评论(0) 推荐(0) 编辑
摘要: <!--[if lte IE 6]><![if gte IE 5.5]> <span alt='Open Declaration' style="border:none; position: absolute; width: 16px; height: 16px; left: -21px; filt 阅读全文
posted @ 2017-11-14 17:06 搜索技术 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 阻塞队列之LinkedTransferQueue 阅读全文
posted @ 2017-11-14 16:43 搜索技术 阅读(165) 评论(0) 推荐(0) 编辑
摘要: BlockingQueue BlockingQueue的核心方法:放入数据: offer(anObject):表示如果可能的话,将anObject加到BlockingQueue里,即如果BlockingQueue可以容纳, 则返回true,否则返回false.(本方法不阻塞当前执行方法的线程) of 阅读全文
posted @ 2017-11-14 16:18 搜索技术 阅读(20413) 评论(1) 推荐(0) 编辑
摘要: 对Hash操作的命令 hset(key, field, value):向名称为key的hash中添加元素field<—>value hget(key, field):返回名称为key的hash中field对应的value hmget(key, field1, …,field N):返回名称为key的 阅读全文
posted @ 2017-11-14 15:53 搜索技术 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 在Redis集群中使用pipeline批量插入 由于项目中需要使用批量插入功能, 所以在网上查找到了Redis 批量插入可以使用pipeline来高效的插入, 示例代码如下: 阅读全文
posted @ 2017-11-14 15:52 搜索技术 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 协议序列化 采用fastjson FastJSON 简单使用 序列化就是指 把 对象转成JSON格式的字符串 将Map转成JSON 输出结果: 定义JavaBean User转成JSON。 输出结果: 使用Fastjson序列化与反序列化对象 [java] view plain copy [java 阅读全文
posted @ 2017-11-14 15:49 搜索技术 阅读(187) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页