上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 32 下一页
摘要: CountDownLatch,一个同步辅助类,在完成一组正在其他线程中执行的操作之前,它允许一个或多个线程一直等待。主要方法public CountDownLatch(int count);public voidcountDown();public voidawait() throwsInterru... 阅读全文
posted @ 2016-01-20 16:29 Struts-pring 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 线程中断主要设涉及3个方法:实例方法interrupt、静态方法interrupted、实例方法isInterrupted:实例方法interrupt作用:此方法调用后,如果调用实例线程当前正在调用wait、join、sleep、或在可中断的InterruptibleChannelIO操作、或阻塞在... 阅读全文
posted @ 2016-01-20 15:11 Struts-pring 阅读(218) 评论(0) 推荐(0) 编辑
摘要: ## This file is detritus from various testing attempts# the values below may change, and often do not represent# reasonable values for the parameters.... 阅读全文
posted @ 2016-01-20 09:27 Struts-pring 阅读(380) 评论(0) 推荐(0) 编辑
摘要: c3p0号称是java界最好的数据池。c3p0的配置方式分为三种,分别是1.setters一个个地设置各个配置项2.类路径下提供一个c3p0.properties文件3.类路径下提供一个c3p0-config.xml文件我们主要说下c3p0-config.xml配置://默认池配置 rootjava... 阅读全文
posted @ 2016-01-20 09:27 Struts-pring 阅读(286) 评论(0) 推荐(0) 编辑
摘要: db1为原数据库,db2为要导出到的数据库,fromtable 是要导出的表名1.方法一:登录导出到的数据库,执行create table fromtable select * from db1.fromtable;2.方法二:在cmd下执行,mysqldump -u root -p db1 fro... 阅读全文
posted @ 2016-01-19 10:32 Struts-pring 阅读(330) 评论(0) 推荐(0) 编辑
摘要: $("input[name=A7]:checked");$("input[name=A7]:checked[value='"+value+"']"); 阅读全文
posted @ 2016-01-18 16:59 Struts-pring 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 禁用backspace键的后退功能,但是可以删除文本内容 阅读全文
posted @ 2016-01-18 14:12 Struts-pring 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 昨天开始搭后台框架,到晚上的时候遇到了一个现在觉得挺可笑但是当时一直很纠结很纠结的问题,这个问题刚刚解决出来,把它拿出来说说,让自己长点儿记性,希望大家不要犯我这个错误啊在backstage.jsp页面中我写了一个方法,用于在指定位置添加面板(id为msg的地方)functionaddTab(t,h... 阅读全文
posted @ 2016-01-18 11:36 Struts-pring 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 转:http://my.oschina.net/u/2331760/blog/391937?fromerr=saqeoxxBjQuery Easyui 的tabs插件有两种方式加载某个tab(标签页)上的内容:“href远程请求”和“content本地内容”,本文就两种方式的优缺点进行简单分析和思考... 阅读全文
posted @ 2016-01-18 11:03 Struts-pring 阅读(5272) 评论(0) 推荐(0) 编辑
摘要: 一个cron表达式有至少6个(也可能7个)有空格分隔的时间元素。按顺序依次为1.秒(0~59)2.分钟(0~59)3.小时(0~23)4.天(月)(0~31,但是你需要考虑你月的天数)5.月(0~11)6.天(星期)(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)7... 阅读全文
posted @ 2016-01-15 09:27 Struts-pring 阅读(2428) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 32 下一页