上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页
摘要: http://dogstar.iteye.com/blog/116130org.springframework.scheduling.quartz.CronTriggerBean 阅读全文
posted @ 2012-12-19 11:59 我是小菜鸟 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 获取表:select table_name from user_tables; //当前用户的表select table_name from all_tables; //所有用户的表select table_name from dba_tables; //包括系统表select table_name from dba_tables where owner='用户名'user_tables:table_name,tablespace_name,last_analyzed等dba_tables:ower,table_name,tablespace_name,last_analyze 阅读全文
posted @ 2012-12-17 14:42 我是小菜鸟 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 分布式缓存系统Memcached学习心得:http://www.iteye.com/topic/208981记在这里供以后学习~ 阅读全文
posted @ 2012-12-12 15:27 我是小菜鸟 阅读(145) 评论(0) 推荐(0) 编辑
摘要: rownum为虚拟列,不是实际物理列select rownum,t.code from sys_config t; // 取得行数和code列select rownum, t.code from sys_config t where rownum <=20 order by t.code; // 取得行数<=20,并按code排序,排序失败select rownum, code from (select * from sys_config order by code) where rownum <=20; // 取得前20行成功select rownum, code from 阅读全文
posted @ 2012-12-12 11:14 我是小菜鸟 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 1、 java文件中获得路径Thread.currentThread().getContextClassLoader().getResource("") //获得资源文件(.class文件)所在路径ClassLoader.getSystemResource("")Class_Name.class.getClassLoader().getResource("")Class_Name.class .getResource("/") Class_Name.class .getResource("") 阅读全文
posted @ 2012-12-10 16:25 我是小菜鸟 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: JSTL(JSP Standard Tag Library ,JSP标准标签库)是一个不断完善的开放源代码的JSP标签库,是由apache的jakarta小组来维护的。JSTL只能运行在支持JSP1.2和Servlet2.3规范的容器上,如tomcat 4.x。在JSP 2.0中也是作为标准支持的。fmt:formatDatejakarta-taglibs-standard-1.1.2/lib---jstl.jar、standard.jar/tld---fmt.tld<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" p 阅读全文
posted @ 2012-11-14 17:50 我是小菜鸟 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 初次看JSP Tag代码,在没有观看其他介绍的情况下对代码进行了一番查看,发现其执行过程如下:1. 用户访问某个页面,此时请求发送到web容器;2. Web容器经过一番处理,将页面转换成servlet,找到相对应jsp页面进行渲染;3. 在渲染时发现了某一个tag,此时根据页面最前面引入的tag lib进行解析;4. 根据tag lib找到对应处理这个tag的类,在这个类里面进行处理(依次处理顺序为doStartTag()-对tag的前半部分进行处理, doEndTag()-对tag的后半部分进行处理, release()-对所有资源进行释放;5. 解析完成之后,将生成的html代码返回给se 阅读全文
posted @ 2012-11-14 16:43 我是小菜鸟 阅读(426) 评论(0) 推荐(0) 编辑
摘要: ##############################################Warm up VS for the first time#Usage:# WarmUpVS.ps1 -vsVersion [vsVersion]#Parameters:# vsVersion: The vsVersion, could be VS100 or VS110##############################################function warmUpVS {Param([string]$vsVersion)$error.clear()$programFile.. 阅读全文
posted @ 2012-11-11 22:32 我是小菜鸟 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 1.OS theory (File system, I/O, Process/thread schedule, memory management). To understand OS better, to understand JVM easier;2.Computer security (PKI, JCE/JAAS, JVM security Architecture);3.Design Pattern and Framework (GOF, Struts, JUnit, Hibernate, Ant);4.Distributed Computation (JNDI, EJB, JTA, 阅读全文
posted @ 2012-10-30 17:25 我是小菜鸟 阅读(128) 评论(0) 推荐(1) 编辑
摘要: 原文:http://yonglee.blog.51cto.com/436881/103201第一,谈谈final, finally, finalize的区别。最常被问到。final修饰符(关键字)如果一个类被声明为final,意味着它不能再派生出新的子类,不能作为父类被继承。因此一个类不能既被声明为abstract的,又被声明为final的。将变量或方法声明为final,可以保证它们在使用中不被改变。被声明为final的变量必须在声明时给定初值,而在以后的引用中只能读取,不可修改。被声明为final的方法也同样只能使用,不能重载。 Finally在异常处理时提供finally块来执行任何清除. 阅读全文
posted @ 2012-10-30 17:24 我是小菜鸟 阅读(226) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页