上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页
摘要: 使用EL表达式时,遇到了页面直接显示“time: ${requestScope.time}”,不解析的情况。查找资料原因是:在默认情况下,Servlet 2.3 / JSP 1.2是不支持EL表达式的,而Servlet 2.4 / JSP 2.0支持。刚好我使用Maven创建的webapp项目,we 阅读全文
posted @ 2016-11-01 03:45 liqipeng 阅读(1979) 评论(0) 推荐(2) 编辑
摘要: http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/ 阅读全文
posted @ 2016-10-29 20:39 liqipeng 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 创建Java应用程序项目mvn archetype:generate -DgroupId=com.liq -DartifactId=firstApp -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeCatalog=interna 阅读全文
posted @ 2016-10-25 20:48 liqipeng 阅读(2523) 评论(0) 推荐(0) 编辑
摘要: 踩到一个IE8的parseInt的坑: Chrome: 阅读全文
posted @ 2016-07-19 20:15 liqipeng 阅读(200) 评论(0) 推荐(0) 编辑
摘要: powershell小工具 阅读全文
posted @ 2016-05-17 21:25 liqipeng 阅读(290) 评论(0) 推荐(0) 编辑
摘要: public static bool IsAjaxRequest(HttpRequest request) { if (request == null) { throw new ArgumentNullException("request"); } return ((request... 阅读全文
posted @ 2016-01-22 15:30 liqipeng 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1. 当前端口被哪个进程占用 netstat aon|findstr 80 tasklist|findstr 2448 2. 去除文件只读属性 attrib Common.dll r 3. 拷贝文件夹 xcopy /y /s ..\MyDevTool\ForDebug\Some\ .\ 阅读全文
posted @ 2016-01-21 19:23 liqipeng 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 场景:数据库存储的是服务器时间,需要根据浏览器端客户的时区导出时间。 图示: C< offsetClientTime B< offsetServerTime A server utc client 1. 客户端获取时间差: function getTimeOffset(){ var now... 阅读全文
posted @ 2015-10-28 18:08 liqipeng 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 1. 批处理编译解决方案(.sln) @echo off path %SYSTEMROOT%\Microsoft.NET\Framework64\v4.0.30319\ echo 正在生成HelloWorld项目,Build日志输出到HelloWorld.log.txt msb... 阅读全文
posted @ 2015-10-21 23:29 liqipeng 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 有时候想对本地的几个repository都进行一下pull,一个一个操作比较繁琐,所以写了个shell脚本进行简化操作。 1. git_pull_all.sh !/bin/sh clear function showMsg() { echo e "\033[32... 阅读全文
posted @ 2015-10-21 20:12 liqipeng 阅读(5864) 评论(0) 推荐(1) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页