Troubleshooting JDK
收集整理下JDK自带的关于 Troubleshooting 的文档
Java 2 Platform, Standard Edition 5.0
Troubleshooting and Diagnostic Guide
http://www.oracle.com/technetwork/java/jdk50-ts-guide-149808.pdf
Troubleshooting Guide for JavaSE 6 with HotSpot VM
http://www.oracle.com/technetwork/java/javase/tsg-vm-149989.pdf
IBM Developer Kit and Runtime Environment, Java Technology Edition, Version 6
http://www-03.ibm.com/systems/resources/systems_i_advantages_perfmgmt_diag60.pdf
jvm_internals
http://www.systemdatarecorder.org/training/jvm_internals.pdf
JDK Troubleshooting Guide
http://docs.oracle.com/javase/7/docs/webnotes/tsg/
memorymanagement-whitepaper
http://www.oracle.com/technetwork/java/javase/memorymanagement-whitepaper-150215.pdf
Java SE 6 Performance White Paper
http://www.oracle.com/technetwork/java/6-performance-137236.html
Java Tuning White Paper
http://www.oracle.com/technetwork/java/tuning-139912.html
J2SE 5.0 Performance White Paper
http://www.oracle.com/technetwork/java/5-136747.html
The Java HotSpot Performance Engine Architecture
http://www.oracle.com/technetwork/java/whitepaper-135217.html
Tuning Garbage Collection with the 5.0 Java[tm] Virtual Machine
http://www.oracle.com/technetwork/java/gc-tuning-5-138395.html
Java SE 6 HotSpot[tm] Virtual Machine Garbage Collection Tuning
http://www.oracle.com/technetwork/java/javase/gc-tuning-6-140523.html
Java SE HotSpot at a Glance
http://www.oracle.com/technetwork/java/javase/tech/hotspot-138757.html
Garbage Collection (GC) Tuning Guide
https://confluence.atlassian.com/display/ATLAS/Garbage+Collection+(GC)+Tuning+Guide
Garbage Collection in the Java HotSpot Virtual Machine
http://www.devx.com/Java/Article/21977
调整 Java 虚拟机
Our Collectors
https://blogs.oracle.com/jonthecollector/entry/our_collectors
转自:
Troubleshooting JDK
Troubleshooting JDK的更多相关文章
- troubleshooting tools in JDK 7--转载
This chapter describes in detail the troubleshooting tools that are available in JDK 7. In addition, ...
- 64位ubuntu安装32位jdk
转自:http://blog.csdn.net/anladeyatou/article/details/8213334 ubuntu-11.10-desktop-amd64 jdk-6u23-linu ...
- linux ubuntu安装jdk
Oracle对Jdk7与Jre7的关系的经典图解 Oracle has two products that implement Java Platform Standard Edition(Java ...
- JDK命令行工具
jinfo(Configuration Info for Java)的作用是实时地查看和调整虚拟机各项参数 jmap(Memory Map for Java)命令用于生成堆转储快照(一般称为heapd ...
- [转]JDK自带工具之问题排查场景示例
最近看到了大量关于java性能调优.故障排查的文章,自己也写了一篇Java调优经验谈.接着此篇文章,其实一直打算写写一些常用调优工具以及它们的惯常用法的.后来在http://java-performa ...
- Java java jdk在Linux下安装与环境变量的配置
java jdk在Linux下安装与环境变量的配置 by:授客 QQ:1033553122 linux环境:CentOS-6.0-x86_64-bin-DVD1.iso [root@localhost ...
- ubuntu配置JDK
1.下载JDK jdk-8u151-linux-x64.tar.gz 2.1.解压压缩包 tar -xzvf jdk-8u151-linux-x64.tar.gz 2.2.编辑~/.bashrc ex ...
- 深入理解Java虚拟机 #01# 自己编译JDK
x 首先用书上的脚本尝试,失败. 之后根据源文件的 README 编译,抛出: root@linux:/opt/openjdk# sh ./get_source.sh ERROR: Need init ...
- JDK自带工具之问题排查场景示例
最近看到了大量关于java性能调优.故障排查的文章,自己也写了一篇< Java调优经验谈 >.接着此篇文章,其实一直打算写写一些常用调优工具以及它们的惯常用法的.后来在http://jav ...
随机推荐
- [SHELL实例] (转)最牛B的 Linux Shell 命令 (一)
本文编译自commandlinefu.com ( 应该是 Catonmat ) 的系列文章 Top Ten One-Liners from CommandLineFu Explained .作为一个由 ...
- Yii源码阅读笔记(十七)
View.php,继承了component,用于渲染视图文件: namespace yii\base; use Yii; use yii\helpers\FileHelper; use yii\wid ...
- Java语言基础相关问题
*动手动脑: 问题1: 仔细阅读示例: EnumTest.java,运行它,分析运行结果? 源代码: public class EnumTest { public static void main ...
- WPF 最大化最小化窗口
public static void FullOrMin(this Window window) { //如果是全屏,则最小化 if (win ...
- SELECT 'www' = 0; 1
http://dev.mysql.com/doc/refman/5.7/en/type-conversion.html MySQL 5.7 Reference Manual / Functions ...
- springMVC配置文件spring-servlet.xml中<mvc:annotation-driven />的意义
<mvc:annotation-driven/>标签,对应的实现类是org.springframework.web.servlet.config.AnnotationDrivenBeanD ...
- Linq&Lumda---LINQ to DataSet的DataTable操作
1. DataTable读取列表 DataSet ds = new DataSet();// 省略ds的Fill代码DataTable products = ds.Tables["Produ ...
- SIP学习(实例详解)
本文摘自:http://blog.chinaunix.net/uid-20655530-id-1589483.html 学习 SIP 协议最快捷的方法是通过范例来学习, 找到了一个完整的呼叫流程,le ...
- Android调用WCF
http://www.cnblogs.com/davidgu/archive/2012/05/16/2504182.html
- 使用sql语句查询日期在一定时间内的数据
使用sql语句查询日期在一周内的数据 select * from ShopOrder where datediff(week,ordTime,getdate()-1)=0 //查询当天日期在一周年 ...