背后滑板

文章
2
资源
0
加入时间
2年10月21天

最详细的Log4J使用教程

地址:http://www.codeceo.com/log4j-usage.html日志是应用软件中不可缺少的部分,Apache的开源项目log4j是一个功能强大的日志组件,提供方便的日志记录。在apache网站:jakarta.apache.org/log4j 可以免费下载到Log4j最新版本的软件包。一、入门实例1.新建一个JAva工程,导入包log4j-1.2.17.jar,整个工程最...

oracle索引--重建

--重建索引alter index 索引名称 rebuild tablespace DELL_SPACE online;--索引分析analyze index 索引名称 validate structure;select (del_lf_rows_len/lf_rows_len) from index_stats where name='索引名称';--查询索引深度Select i...