上一页 1 2 3 4 5 6 7 ··· 13 下一页
  2017年7月21日
摘要: http://www.cnblogs.com/taozhiye/p/6599738.html 1 maven中spring-boot版本同意管理,有parent和dependencyManagement两种方式, parent有点像extends父类,dependencyManagement有点像i 阅读全文
posted @ 2017-07-21 09:20 编世界 阅读(285) 评论(0) 推荐(0) 编辑
  2017年6月21日
摘要: 使用HTML5 Web存储的localStorage和sessionStorage方式进行Web页面数据本地存储。 页面参考如下图,能将页面上的数据进行本地存储。并能读取存储的数据显示在页面上。 localStorage(本地存储),可以长期存储数据,没有时间限制,一天,一年,两年甚至更长,数据都可 阅读全文
posted @ 2017-06-21 16:57 编世界 阅读(143) 评论(0) 推荐(0) 编辑
  2017年6月13日
摘要: http://www.cnblogs.com/likehua/p/4001556.html 阅读全文
posted @ 2017-06-13 13:33 编世界 阅读(389) 评论(0) 推荐(0) 编辑
  2017年6月12日
摘要: 1 概念对比 Relational DB -> Databases -> Tables -> Rows -> Columns Elasticsearch -> Indices(索引) -> Types -> Documents -> Fields Elasticsearch的主要概念如下 – 节点  阅读全文
posted @ 2017-06-12 16:13 编世界 阅读(173) 评论(0) 推荐(0) 编辑
  2017年6月8日
摘要: http://blog.csdn.net/xinyuan_java/article/details/46696703 http://www.cnblogs.com/taozhiye/p/6704659.html 阅读全文
posted @ 2017-06-08 22:07 编世界 阅读(98) 评论(0) 推荐(0) 编辑
  2017年6月4日
摘要: package com.atguigu.nio; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SelectionKey; import java.nio.channels.Selector; import j... 阅读全文
posted @ 2017-06-04 22:53 编世界 阅读(116) 评论(0) 推荐(0) 编辑
摘要: package com.atguigu.nio; import java.io.IOException;import java.nio.ByteBuffer;import java.nio.channels.FileChannel;import java.nio.channels.SeekableB 阅读全文
posted @ 2017-06-04 22:52 编世界 阅读(138) 评论(0) 推荐(0) 编辑
摘要: package com.atguigu.nio; import java.nio.ByteBuffer; import org.junit.Test; /* * 一、缓冲区(Buffer):在 Java NIO 中负责数据的存取。缓冲区就是数组。用于存储不同数据类型的数据 * * 根据数据类型不同(boolean 除外),提供了相应类型的缓冲区: * ByteBuffer * ... 阅读全文
posted @ 2017-06-04 22:51 编世界 阅读(128) 评论(0) 推荐(0) 编辑
  2017年5月21日
摘要: mkdir -p /home/hello/hello -p表示递归创建 rmdir只能删除空目录 rm aa.jpg rm -r hello cp /home/hello/11.txt /temp cp -r /home/hello /temp -r表示复制目录 mv 移动或者改名 mv ./aa/ 阅读全文
posted @ 2017-05-21 23:13 编世界 阅读(104) 评论(0) 推荐(0) 编辑
  2017年4月23日
摘要: Solr DIH(Data Import Handler)组件的实现类为org.apache.solr.handler.dataimport.DataImportHandler,在Solr的solrconfig.xml中配置两个handler,配置分别说明如下: solrconfig.xml配置如下 阅读全文
posted @ 2017-04-23 20:53 编世界 阅读(283) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页