上一页 1 ··· 515 516 517 518 519 520 521 522 523 ··· 542 下一页
摘要: This document provides information on typical command-line options and environment variables that can affect the performance characteristics of the Java HotSpot Virtual Machine. Unless otherwise noted, all information in this document pertains to both the Java HotSpot Client VM and the Java HotSpot 阅读全文
posted @ 2011-08-25 23:36 规格严格-功夫到家 阅读(624) 评论(1) 推荐(0) 编辑
摘要: http://www.ibm.com/developerworks/cn/java/j-lo-javacore/index.htmlhttp://www.slf4j.org/extensions.html#javaagenthttp://mchr3k.github.com/org.intrace/http://kenai.com/projects/btracehttp://q-redux.blogspot.com/2011/01/inspecting-hotspot-jvm-options.htmlhttp://jensor.sourceforge.net/http://www.anyang- 阅读全文
posted @ 2011-08-25 23:30 规格严格-功夫到家 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 引言http://www.oschina.net/p/becl/similar_projects?lang=19&sort=view&p=13对于大型 java 应用程序来说,再精细的测试都难以堵住所有的漏洞,即便我们在测试阶段进行了大量卓有成效的工作,很多问题还是会在生产环境下暴露出来,并且很难在测试环境中进行重现。JVM 能够记录下问题发生时系统的运行状态并将其存储在转储(dump)文件中,从而为我们分析和诊断问题提供了重要的依据。常见的转储文件包括 Java Dump, Heap dump 和 System dump。这里我们主要介绍 Java dump 在 JVM 故障 阅读全文
posted @ 2011-08-25 22:43 规格严格-功夫到家 阅读(4764) 评论(0) 推荐(1) 编辑
摘要: 转载请注明出处 http://jjs-love.iteye.com IBM Pattern Modeling and Analysis Tool for Java Garbage Collector ga25.zip javadump IBM Thread and Monitor Dump Analyzer for Java jca28.zip HeapAnalyzer ha26 一种图形工具,用于发现可能的 Java 堆泄漏 javacore() 要用ThreadAnalyzer (suppport assinstant)查看 ga(IBM Pattern Modeling and Anal 阅读全文
posted @ 2011-08-25 22:41 规格严格-功夫到家 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: /etc/init.d/iptables stop (停止防火墙) 或 iptables -F (清空防火墙规则,拆除防火墙) linux 防火墙配置命令 1) 永久性生效,重启后不会复原 开启: chkconfig iptables on 关闭: chkconfig iptables off 2) 即时生效,重启后复原 开启: service iptables start... 阅读全文
posted @ 2011-08-24 19:44 规格严格-功夫到家 阅读(173) 评论(0) 推荐(0) 编辑
摘要: http://os.51cto.com/art/201006/207532.htmhttp://linux.vbird.org/linux_basic/0440processcontrol.phphttp://os.51cto.com/art/201001/176495.htm 阅读全文
posted @ 2011-08-24 19:23 规格严格-功夫到家 阅读(147) 评论(0) 推荐(0) 编辑
摘要: java反编译工具jad 1.5.8g,可以反编译jdk 1.5,jdk 1.6 反编译工具jad简单用法 以下假设jad.exe在c:\java目录下 一、基本用法 Usage:jad[option(s)]<filename(s)> 直接输入类文件名,且支持通配符,如下所示。 c:\java\>jadexample1.class c:\java\>jad*.class 结果是将example1.class反编译为example1.jad。将example1.jad改为example1.java即得源文件。 二、Option-o 不提示,... 阅读全文
posted @ 2011-08-23 16:38 规格严格-功夫到家 阅读(565) 评论(0) 推荐(0) 编辑
摘要: Unable to install breakpoint in due to missing line number 不能调试JavaBean! 在eclipse中不能调试,总是报 错:“Unable to install breakpoint due to missing line number attributes. Modify compiler options to generate line number attributes” 弄了好半天 也没弄出来,最后google了一下,总算解决了。原因是:ANT编译的class Eclipse不认,因为eclipse也会... 阅读全文
posted @ 2011-08-23 11:48 规格严格-功夫到家 阅读(2617) 评论(0) 推荐(0) 编辑
摘要: 1.关于bin目录和obj目录 Bin目录用来保存项目生成后程序集,它有Debug和Release两个版本,分别对应的文件夹为bin/Debug和bin/Release,这个文件夹是默认的输出路径,我们可以通过:项目属性—>配置属性—>输出路径来修改。 obj目录是用来保存每个模块的编译结果,在.NET中,编译是分模块进行的,编译整个完成后会合并为一个.DLL或.EXE保存到bin目录 下。因为每次编译时默认都是采用增量编译,即只重新编译改变了的模块,obj保存每个模块的编译结果,用来加快编译速度。是否采用增量编译,可以通过:项 目属性—>配置属性—>高级—>增量 阅读全文
posted @ 2011-08-19 16:25 规格严格-功夫到家 阅读(693) 评论(0) 推荐(0) 编辑
摘要: 今天在Java中字节码的格式的时候,发现method_info中的access_flags中竟然定了ACC_BRIDGE的值。网上搜了一下,大概理解它的意思了,先记之。 首先是在什么情况下会生成bridge方法(2): bridge method may be created by the compiler when extending a parameterized type whose methods have parameterized arguments. 这是在网上找到的有人贴出来的一段话,但是感觉这段话说的并不是很明白。首先bridge方式是由编译器产生的,因而在源代码中也没有br 阅读全文
posted @ 2011-08-16 10:00 规格严格-功夫到家 阅读(997) 评论(0) 推荐(0) 编辑
上一页 1 ··· 515 516 517 518 519 520 521 522 523 ··· 542 下一页