JAVA类加载器概念与线程类加载器

http://www.cnblogs.com/pfxiong/p/4118445.html

http://stackoverflow.com/questions/2416517/classloader-behaviour-on-tomcat-with-multiple-applications

Tomcat研究之ClassLoader

http://blog.csdn.net/chen77716/article/details/34790

http://tomcat.apache.org/tomcat-7.0-doc/class-loader-howto.html

http://www.cnblogs.com/pfxiong/p/4118436.html

http://www.cnblogs.com/mailingfeng/archive/2012/07/02/2573419.html

http://javarevisited.blogspot.com/2011/08/classnotfoundexception-in-java-example.html

https://blogs.oracle.com/sundararajan/entry/tracing_class_loading_1_5

https://www.ibm.com/developerworks/cn/java/j-lo-classloader/

http://www.cnblogs.com/mailingfeng/archive/2012/07/02/2573419.html

http://blog.csdn.net/aesop_wubo/article/details/7582266

1: Java classes and class loading

http://citeseer.ist.psu.edu/viewdoc/download;jsessionid=2C1F0177C151CC0648BCFD1EF0B27CE0?doi=10.1.1.18.762&rep=rep1&type=pdf

http://docs.oracle.com/javase/specs/jls/se8/html/jls-12.html#jls-12.3.3

http://docs.oracle.com/javase/specs/jvms/se8/html/jvms-5.html

Tomcat研究之ClassLoader

http://blog.csdn.net/chen77716/article/details/34790

http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html

http://www.ibm.com/developerworks/java/library/j-dyn0429/

http://www.ibm.com/developerworks/java/tutorials/j-classloader/j-classloader.html

https://www.ibm.com/developerworks/library/ws-javaclass/

http://www.onjava.com/pub/a/onjava/2004/06/30/classloader2.html?page=2

http://www.onjava.com/pub/a/onjava/2005/01/26/classloading.html

http://www.onjava.com/pub/a/onjava/2004/06/30/classloader2.html

http://www.onjava.com/pub/a/onjava/2003/11/12/classloader.html

https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/Wcb729b1dc954_458d_bdc2_06a5c3fd75a5

https://www.ibm.com/developerworks/library/ws-javaclass/

Demystifying class loading problems, Part            1: An introduction to class loading and debugging tools

Demystifying class loading problems, Part            2: Basic class loading exceptions

Demystifying class loading problems, Part            3: Tackling more unusual class loading problems

Demystifying class loading problems, Part            4: Deadlocks and constraints

Java classes and class loading的更多相关文章

  1. Reloading Java Classes 301: Classloaders in Web Development — Tomcat, GlassFish, OSGi, Tapestry 5 and so on Translation

    The Original link : http://zeroturnaround.com/rebellabs/rjc301/ Copyright reserved by Rebel Inc In t ...

  2. The differences between Java EE components and "standard" Java classes

    https://docs.oracle.com/javaee/7/tutorial/overview003.htm ava EE components are written in the Java ...

  3. Reloading Java Classes 201: How do ClassLoader leaks happen? Translation

    The original link : http://zeroturnaround.com/rebellabs/rjc201/ From ClassLoaders to Classes 从ClassL ...

  4. Reloading Java Classes 101: Objects, Classes and ClassLoaders Translation

    The original link: http://zeroturnaround.com/rebellabs/reloading-objects-classes-classloaders/ A Bir ...

  5. jmeter linux压测报错:Error in NonGUIDriver java.lang.IllegalArgumentException: Problem loading XML from:'/home/server/ptest/disk_out.jmx'.

    1.linux环境jmeter与win环境编写脚本的jmeter版本不一致,版本改为一致 2.脚本中存在中文,去除中文 3.脚本中存在类似于jp@gc - Active Threads Over Ti ...

  6. Java: some learning note for Java calssloader and Servlet

    1. Java Classloader 链接: https://en.wikipedia.org/wiki/Java_Classloader 摘要: The Java Classloader is a ...

  7. Java性能提示(全)

    http://www.onjava.com/pub/a/onjava/2001/05/30/optimization.htmlComparing the performance of LinkedLi ...

  8. (翻译)什么是Java的永久代(PermGen)内存泄漏

    http://www.codelast.com/?p=7248 转载请注明出处:http://www.codelast.com/ 本文是我对这篇文章的翻译:What is a PermGen leak ...

  9. [转] Spring - Java Based Configuration

    PS: Spring boot注解,Configuration是生成一个config对象,@Bean指定对应的函数返回的是Bean对象,相当于XML定义,ConfigurationProperties ...

随机推荐

  1. 红帽中出现”This system is not registered with RHN”的解决方案

    原因是你的linux没有在红帽网络上注册,所以无法下载上面的软件包,替代方案可以使用centos. 下面介绍下使用centos 的流程 1.卸载rhel的默认安装的yum包查看yum包rpm -qa| ...

  2. JS 跨域问题浅析及解决方法优缺点对比(转)

    1.所谓 JS 跨域问题,是指在一个域下的页面中通过js访问另一个不同域下 的数据对象, 出于安全性考 虑,几乎所有浏览器都不允许这种跨域访问,这就导致在一些ajax应用中, 使用跨域的web ser ...

  3. ubuntu知识收集

    1  就像windows下的环境变量分为系统变量和用户变量一样,ubuntu下也是一样,四种环境变量, 1 系统环境变量:/etc/enviroment,  是整个系统的环境变量,与登录用户无关,在这 ...

  4. Linux中的汇编简介

    GNU as汇编语法 GNU汇编语法使用的是AT&T汇编它和Intel汇编的语法主要有以下一些不同: AT&T汇编中的立即操作数前面要加上'$',寄存器操作数名前要加上百分号'%',绝 ...

  5. BZOJ 1042 硬币购物

    先不考虑限制,那么有dp[i]表示i元钱的方案数. 然后考虑限制,发现可以容斥. 其实整个题就是两个容斥原理.感觉出的蛮好的. #include<iostream> #include< ...

  6. 利用WPF绘图

    C#入门经典 25章的一个例子,利用WPF绘图. XAML: <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/p ...

  7. 破解 RCA_CRACKME(解除隐藏按钮)

    系统 : Windows xp 程序 : RCA_CRACKME 程序下载地址 :http://pan.baidu.com/s/1bnoOQ6 要求 : 注册机编写 使用工具 : IDA Pro &a ...

  8. HDU 5823 (状压dp)

    Problem color II 题目大意 定义一个无向图的价值为给每个节点染色使得每条边连接的两个节点颜色不同的最少颜色数. 对于给定的一张由n个点组成的无向图,求该图的2^n-1张非空子图的价值. ...

  9. 集合视图控制器(CollectionViewController) 、 标签控制器(TabBarController) 、 高级控件介绍

    1 创建集合视图,设置相关属性以满足要求 1.1 问题 集合视图控制器UIConllectionViewController是一个展示大量数据的控制器,系统默认管理着一个集合视图UICollectio ...

  10. 【题解】【矩阵】【DP】【Leetcode】Minimum Path Sum

    Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which ...