摘要: import com.google.common.collect.Lists; import java.util.List; import java.util.concurrent.Callable; import java.util.concurrent.CountDownLatch; import java.util.concurrent.Future; import java.util.... 阅读全文
posted @ 2019-08-21 19:32 TheQi 阅读(158) 评论(0) 推荐(0) 编辑
摘要: import com.google.common.base.Joiner; import com.google.common.base.Splitter; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import org.apache.commons.lang.StringUtils; 阅读全文
posted @ 2019-08-21 19:31 TheQi 阅读(212) 评论(0) 推荐(0) 编辑
摘要: import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import java.io.File; import java 阅读全文
posted @ 2019-08-21 19:29 TheQi 阅读(940) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/midoujava/p/11277096.html 阅读全文
posted @ 2019-08-02 16:23 TheQi 阅读(96) 评论(0) 推荐(0) 编辑
摘要: classes这个文件夹,它就是我们要找的classpath。 在第1个例子里,classpath:entry/dev/spring-mvc.xml 中,classpath就是指WEB-INF/classes/这个目录的路径。需要声明的一点是,使用classpath:这种前缀,就只能代表一个文件。 阅读全文
posted @ 2019-04-18 13:08 TheQi 阅读(633) 评论(0) 推荐(0) 编辑
摘要: 1.控制台中文乱码 打开idea打开Tomcat设置,将-Dfile.encoding=UTF-8 这条内容写入到 VM options 中使得两者编码统一 2.有一个端口已经使用 cmd netstat -ano|findstr 1099 taskkill -f -pid 3576 阅读全文
posted @ 2019-04-17 19:24 TheQi 阅读(184) 评论(0) 推荐(0) 编辑
摘要: HttpClient详细使用示例:https://blog.csdn.net/justry_deng/article/details/81042379 JSONObject:http://www.cnblogs.com/joahyau/p/6736637.html 这个简单易懂,如果json里有嵌套 阅读全文
posted @ 2019-04-08 18:29 TheQi 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 主要这一篇文章吧: 然后附上总结: 1.首先B+树和B树来说的话,因为非叶子结点只存索引(没有卫星数据),所以同样大小的磁盘页可以存更多结点,也就是说更加矮胖,磁盘IO少 2.B+树查询性能更稳定 3.B+树方便范围查询 B+树父亲节点的数值一定会出现在子结点中 由于b树每一个分支是比结点用元素要多 阅读全文
posted @ 2019-04-04 19:27 TheQi 阅读(724) 评论(0) 推荐(0) 编辑
摘要: bo'o 自己在网上学到的:create database +(数据库名称) 创建一个数据库use 数据库名称 使用这个数据库 存在疑问 varchar后面那个值是什么意思一、DDLRENAME 只能改table -create :create table 表名( id int,name varch 阅读全文
posted @ 2019-04-04 14:38 TheQi 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1.想更换主键怎么办 先删除主键alter table table_test drop primary key;然后再增加主键alter table table_test add primary key(id); 2.删除更改属性 删除自增属性: ALTER TABLE `members` CHAN 阅读全文
posted @ 2019-04-02 21:24 TheQi 阅读(184) 评论(0) 推荐(0) 编辑