会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博观约取 厚积薄发
博客园
首页
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
21
下一页
2016年11月1日
EL表达式不解析
摘要: 使用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
阅读(1991)
评论(0)
推荐(2)
2016年10月29日
css基于绝对定位的垂直水平居中技术
摘要: http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/
阅读全文
posted @ 2016-10-29 20:39 liqipeng
阅读(197)
评论(0)
推荐(0)
2016年10月25日
Java开发环境搭建——Maven配置
摘要: 创建Java应用程序项目mvn archetype:generate -DgroupId=com.liq -DartifactId=firstApp -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeCatalog=interna
阅读全文
posted @ 2016-10-25 20:48 liqipeng
阅读(2549)
评论(0)
推荐(0)
2016年7月19日
IE8的parseInt
摘要: 踩到一个IE8的parseInt的坑: Chrome:
阅读全文
posted @ 2016-07-19 20:15 liqipeng
阅读(207)
评论(0)
推荐(0)
2016年5月17日
powershell小工具
摘要: powershell小工具
阅读全文
posted @ 2016-05-17 21:25 liqipeng
阅读(299)
评论(0)
推荐(0)
2016年1月22日
判断请求是不是ajax
摘要: public static bool IsAjaxRequest(HttpRequest request) { if (request == null) { throw new ArgumentNullException("request"); } return ((request...
阅读全文
posted @ 2016-01-22 15:30 liqipeng
阅读(176)
评论(0)
推荐(0)
2016年1月21日
常用命令行/批处理
摘要: 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
阅读(221)
评论(0)
推荐(0)
2015年10月28日
服务器导出服务器时间转换浏览器端时区
摘要: 场景:数据库存储的是服务器时间,需要根据浏览器端客户的时区导出时间。 图示: C< offsetClientTime B< offsetServerTime A server utc client 1. 客户端获取时间差: function getTimeOffset(){ var now...
阅读全文
posted @ 2015-10-28 18:08 liqipeng
阅读(895)
评论(0)
推荐(0)
2015年10月21日
用批处理批量编译多个解决方案(.sln)
摘要: 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
阅读(559)
评论(0)
推荐(0)
shell脚本批量调用git命令
摘要: 有时候想对本地的几个repository都进行一下pull,一个一个操作比较繁琐,所以写了个shell脚本进行简化操作。 1. git_pull_all.sh !/bin/sh clear function showMsg() { echo e "\033[32...
阅读全文
posted @ 2015-10-21 20:12 liqipeng
阅读(5891)
评论(0)
推荐(1)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
21
下一页
公告