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 ...
随机推荐
- Web前端开发:什么是页面重回(repaints)与回流(reflow)
前言:什么是重绘与回流? 重绘(repaints)是一个元素外观的改变所触发的浏览器行为,例如改变vidibility.outline.背景色等属性.浏览器会根据元素的新属性重新绘制,使元素呈现新的外 ...
- 20145225 实验四《Andoid开发基础》
实验内容 搭建Android环境 运行Android 修改代码,能输出学号 实验步骤 安装Android Studio 安装Android的SDK 运行Andriod Studio并在模拟手机上显示自 ...
- 云计算中心网络资源分配-Faircloud: sharing the network in cloud computing
网络资源同计算资源以及存储资源一样,是一种可被租户共享使用并提高利用率的资源.但是,不同租户的计算资源以及存储资源之间,有很强的隔离性,可以实现按需按比例分配的使用方式,但是网络资源却不可以. 主要原 ...
- jsp页面揣出现Invalid action class configuration that references an unknown class解决方案
jsp页面中,增加和修改用了同一个页面,能正常增加,却不能修改,后来发现页面中有一个hidden的id, 这个input的name写成name="designType.id"时就会 ...
- UCenter 通信失败 和 无法同步登陆的调试方法
1. 看请求 2./uc_server/control/admin/app.php echo "\$url = $url <br />\n \$status = $status& ...
- vue model双向绑定
view <div id='demo' class="container"> <input type="text" v-model='name ...
- P1010 幂次方
这么难得题,居然普及-?做了好久 #include <bits/stdc++.h> using namespace std; int fact[21]; void solve(int n) ...
- (java版)斐波那契数列
用JAVA编写Fibonacei(1,1,2,3,5,8,13...)数列的第n项 分析:当n=1时,a(n)=1;当n=2时 ,a(n)=2. 所以当n=>3时,a(n)=a(n-1)+a(n ...
- Linux下安装Xdebug
为了调试PHP程序,安装一下xdebug. 官方网址: http://www.xdebug.org 首先下载xdebug2.1.0,在官方首页下载源代码,下载回来的文件名是:xdebug-2.1.0. ...
- sql索引组织
select p.*, p.partition_id, c.object_id,OBJECT_NAME(c.object_id) objectName,c.name,c.column_id,pc.m ...