I've always taken the classpath for granted, i.e. - its something that eclipse, maven , ant , etc handled for me. Its obvious that the classpath is the place where java "looks" for binary classes which are executed / integrated with an application.
However, there are some intricacies which are not clearly described.
1) How does java "find" classes in the classpath ?
2) How are collisions handled by javac when looking into the classpath ?
3) What is happening "under the hood" when tools like maven/ant add/ignore elements to the classpath ? Do these tools simply wrap the javac program ?
4) Finally : is there an example of a "manual" complicated build for java, that doesnt use the modern generation of build tools --- just for educational purposes -- which is available ?