会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
伍叶春-程序员笔记
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2016年12月22日
JSTL标签
摘要: 公开条件说明: ${res.qksm} ...
阅读全文
posted @ 2016-12-22 09:22 伍叶春
阅读(171)
评论(0)
推荐(0)
2016年12月20日
常用JS
摘要: //下拉框获取值 alert($('#deptSelect').val()); alert($("#deptSelect").find("option:selected").text()); //时间格式化 function smartTimeAgo(date){ var time=new Date().getTime(); time=parseInt((time-da...
阅读全文
posted @ 2016-12-20 10:26 伍叶春
阅读(208)
评论(0)
推荐(0)
2016年12月7日
SpringMVC项目
摘要: 一、说明该项目是为了演示SpringMVC框架中涉及到的一些知识点,相对独立,掌握这些,基本上就能够解决工作中遇到的一些问题。整个项目的构建规划如下: 1、创建一个标准的Maven Web项目;2、使它成为一个SpringMVC项目;3、增删改查操作(为了演示项目独立性,暂不引入Hibernate、
阅读全文
posted @ 2016-12-07 17:31 伍叶春
阅读(460)
评论(0)
推荐(0)
2016年11月18日
Chrome浏览器好用的插件
摘要: 1、Postman - REST Client 2、Proxy SwitchyOmega
阅读全文
posted @ 2016-11-18 16:40 伍叶春
阅读(153)
评论(0)
推荐(0)
2016年11月1日
Xshell 访问虚拟机中linux
摘要: 1.关闭linux防火墙 service iptables stop chkconfig iptables off 2.启动ssh服务 service sshd start
阅读全文
posted @ 2016-11-01 16:53 伍叶春
阅读(150)
评论(0)
推荐(0)
2016年10月26日
Linux下安装Nginx
摘要: 一、下载: 1、wget wget http://nginx.org/download/nginx-1.8.1.tar.gz 2、tar -zxvf nginx-1.8.1.tar.gz 3、cd nginx-1.8.1 二、安装依赖模块: 4、yum -y install gcc gcc-c++ autoconf automake make 5、yum -y install zlib zli...
阅读全文
posted @ 2016-10-26 15:49 伍叶春
阅读(132)
评论(0)
推荐(0)
2016年8月23日
Oracle-查看用户对象信息
摘要: --视图(可查看拥有者、对象名称、创建时间、上次修改时间) SELECT t.OBJECT_NAME, t.CREATED, t.LAST_DDL_TIME FROM user_objects t order by t.LAST_DDL_TIME desc; SELECT t.OWNER, t.OBJECT_NAME, t.CREATED, t.LAST_DDL_TIME FROM all_ob...
阅读全文
posted @ 2016-08-23 08:50 伍叶春
阅读(2636)
评论(0)
推荐(0)
2016年8月18日
正则表达式
摘要: /^((25[0-5]|2[0-4]\d|[01]?\d\d?)($|(?!\.$)\.)){4}$/ JS -replaceAll()String keyword='Hello';var htmlReg = new RegExp(keyword, "ig"); zybm=zybm.replace(htmlReg,""+keyword+"")
阅读全文
posted @ 2016-08-18 11:27 伍叶春
阅读(99)
评论(0)
推荐(0)
2016年8月17日
Windows-hosts文件地址
摘要: C:\Windows\System32\drivers\etc
阅读全文
posted @ 2016-08-17 09:56 伍叶春
阅读(353)
评论(0)
推荐(0)
2016年8月8日
Eclipse中项目去除Js验证
摘要: <buildCommand> <name>org.eclipse.wst.jsdt.core.javascriptValidator</name> <arguments> </arguments> </buildCommand>
阅读全文
posted @ 2016-08-08 09:18 伍叶春
阅读(803)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告