Possible Duplicate:
well written java open source projects (for learning)?

I want to improve my design and programming skills by understanding design & code of open source projects. I downloaded hadoop,groovy but they are very difficult to follow. I am not having a clue of how to follow this code without having a high level overview of the design. Any suggestions??

Thank you.

link|improve this question

78% accept rate
feedback

closed as exact duplicate by Robert Harvey, Powerlord, Neil N, Pascal Thivent, Rob Hruska May 27 '10 at 19:10

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

The Apache foundation has a whole bunch of high-quality projects to study. (Answer included here because the duplicate question does not contain it)

http://projects.apache.org/indexes/language.html#Java

link|improve this answer
feedback

Investigate Google Collections. Many well-thought solutions can be found there.

link|improve this answer
feedback

How big a project? If you're just starting, then maybe starting with something small is a good idea. I've contributed to a Mp3 player for java - javalayer - mostly in the area of separating the code and applying class-level design (e.g. separate stream reader, decoder, audio output.)

If you want a big project, then look at Spring.

link|improve this answer
feedback

I recommend checking out http://nemo.sonarsource.org/, the site contains a lot of open source Java projects run against Sonar, which is a build quality tool. Probably a good idea to check out a project out with a low amount of code and technical debt.

As a side note I am not affiliated in anyway with Sonar.

link|improve this answer
feedback

Fitnesse in the pet project of Uncle Bob, who wrote the "Clean Code" book. It is not too big and you can more or less easily see what's it is doing as it is a Wiki and a test framework, which gives a nice set of moving, but visible parts.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.