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. IOS打开其他应用、以及被其他应用打开

    1.打开其他应用 appURLStr = "cwork://app_id?title=xxx&content=xxx" [[UIApplication sharedAppl ...

  2. 摘自:java夜未眠之java学习之道

    目前Java可以说是产业界和学术界最热门的语言,许多读者都很急切想把Java学好.除非是武侠小说中的运功传送内力的方式,否则花上一段时间苦学是免不了的.花时间,不打紧,就是怕方法错误,事倍功半.我认为 ...

  3. Non-constant Fields in Case Labels

    Non-constant Fields in Case Labels in android library project http://tools.android.com/tips/non-cons ...

  4. BZOJ 1060 时态同步

    贪心. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> ...

  5. C++ algorithm 里的sort函数应用

    MSDN中的定义: template<class RanIt>    void sort(RanIt first, RanIt last); //--> 1)template< ...

  6. ACDream-C - Transformers' Mission(Dijastra最短路径)

    dijstra求最短路径:经典应用题目: 题意:给你一个带权值无向图,权值是A点到B点的时间,然后告诉你起点,一个人可以去炸掉一个结点或多个节点,也可以派多个人,最终这些人在终点集合,问最后一个到达终 ...

  7. C#使用Fixed创建固定大小的缓冲区

    在 C# 中,可以使用 fixed 语句在数据结构中创建带有固定大小数组的缓冲区. 使用现有代码(如使用其他语言.预先存在的 DLL 或 COM 项目编写的代码)时,这种方法非常有用. 固定数组可采用 ...

  8. Jquery 中toggle的用法举例

    toggle用法是使得两个以上的方法交替出现. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...

  9. 转:Enterprise Library 4.0缓存应用程序块

    英文原文:http://msdn.microsoft.com/zh-cn/library/cc511588(en-us).aspx Enterprise Library 缓存应用程序块允许开发人员在应 ...

  10. 《MORE EFFECTIVE C++》条款20 条款21

    条款20 协助编译器实现返回值优化 当重载运算符的时候,比如+ - * / 这类运算符,该函数返回的值一定是个右值(即不能是引用),那么执行一次运算的开销可能会在临时对象上调用多次构造函数和析构函数, ...