上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: http://www.aikaiyuan.com/8875.html 用git pull来更新代码的时候,遇到了下面的问题: 出现这个问题的原因是其他人修改了xxx.php并提交到版本库中去了,而你本地也修改了xxx.php,这时候你进行git pull操作就好出现冲突了,解决方法,在上面的提示中也 阅读全文
posted @ 2016-09-12 21:17 wenlj2000 阅读(50048) 评论(1) 推荐(1) 编辑
摘要: 转载自:http://singo107.iteye.com/blog/1175084 数据库事务的隔离级别有4个,由低到高依次为Read uncommitted 、Read committed 、Repeatable read 、Serializable ,这四个级别可以逐个解决脏读 、不可重复读 阅读全文
posted @ 2016-09-05 12:59 wenlj2000 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 转载自:http://www.scienjus.com/restful-token-authorization/ http://m.blog.csdn.net/article/details?id=49903715 什么是REST REST(Representational State Transf 阅读全文
posted @ 2016-08-17 15:29 wenlj2000 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 先看例子: Test.jsp代码 <%@page pageEncoding="utf-8" %><BR>name:${param.name }<br /> empty处理结果: ${empty param.name }<br /> ==null处理结果:${param.name == null } 阅读全文
posted @ 2016-07-27 13:49 wenlj2000 阅读(410) 评论(0) 推荐(0) 编辑
摘要: kill pid 在kill进程的同时,会将包删掉该进程所在webapps目录下的文件夹,如iexpense文件夹 kill -9 pid 会强制删掉进程,但是不是删掉该进程所在webapps目录下的文件夹,如iexpense文件夹不会被删除 阅读全文
posted @ 2016-07-27 11:21 wenlj2000 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 范例一:将整个 /etc 目录下的文件全部打包成为 /tmp/etc.tar[root@linux ~]# tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩![root@linux ~]# tar -zcvf /tmp/etc.tar.gz /etc <==打包后,以 gz 阅读全文
posted @ 2016-07-27 11:18 wenlj2000 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 1. 查看linux中某个端口(port)是否被占用(netstat,lsof) [root@caiwutest ~]# netstat -tunlp | grep 8080tcp 0 0 :::8080 :::* LISTEN 4281/java 2)查看某一端口的占用情况: lsof -i:端口 阅读全文
posted @ 2016-06-28 17:21 wenlj2000 阅读(203) 评论(0) 推荐(0) 编辑
摘要: remote: ERROR: missing Change-Id in commit message footer remote: ERROR: missing Change-Id in commit message footer [摘要:git 提交到近程版本库失足:remote: ERROR: 阅读全文
posted @ 2016-06-21 20:32 wenlj2000 阅读(4802) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_4f925fc30102e27j.html jqGrid中实现radiobutton的两种做法 第一种:colModel: [ { name: 'MY_ID', index: 'MY_ID', align: "center", sorta 阅读全文
posted @ 2016-06-14 11:24 wenlj2000 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-06-07 17:06 wenlj2000 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页