I loved this question/answers: http://stackoverflow.com/questions/144568/learn-c-from-open-source-code Would love all those great answers/links with the Java language instead!

link|improve this question
feedback

12 Answers

I'm using XStream for several projects, and I've been through its source code on a few occasions. It has a clean and organized design that makes it easy to understand and extend.

Because it focuses on the serialization/deserialization of plain old Java objects, it covers a lot of key integrations that any Java programmer would benefit from knowing:

  • XML
  • Reflection
  • Java Persistence API
  • Annotations
  • JSON
link|improve this answer
feedback

JGAP - Java genetic algoriths package is a well-written open source project to implement genetic algorithms. They also have a JGAP grid area. It's well-written way you can learn about both Java, GA and grid programming.

link|improve this answer
feedback

I was reading the Beautiful Code book and it has a chapter on FitNesse which was very interesting and informative.

Also take a look at the Google Collections

link|improve this answer
feedback

While this is not universally true, the JDK itself has some great examples of excellent Java programming. In particular, I would point you to the source for concurrent collections like ConcurrentHashMap or ConcurrentSkipListMap. The source itself has a large set of internal (non-javadoc) comments and handles a lot of tricky issues. Great stuff.

link|improve this answer
feedback

I'm a fan of HtmlUnit

link|improve this answer
feedback

I've heared - but cannot verify it - that Spring is very well written. Since Spring is huuuge, I'm not sure which part exactly but I'd check Spring core. And learning more about Spring will certainly pay off in any case :-)

link|improve this answer
feedback

Just check out the AllTime favourites at SourceForge, there's lots of stuff you can learn there.

Or go to the SourceForge Software Map, pick a category you like and add a filter: Require->Programming Language->Java.

Enjoy!

link|improve this answer
feedback

how about the big frameworks, such as Hibernate the repo is here, spring, gwt, etc. The Gwt code is the only one i actually had a lok at and tis really well documented and its easy to ge tgoing

Cheers

link|improve this answer
feedback

muCommander Since it is a desktop manager, the domain it pretty intuitive ( we all know file manager pretty well ) , you can add code and see the results immediately because you already know what to expect.

link|improve this answer
feedback

Railo and OpenBD are two nice open source java projects that I know of. Vincent's suggestion about sourceforge is a good place to look too.

link|improve this answer
feedback

Recently I found a library that helps me alot in my works, it has framework for connectiong to data base a framework for reflect , also it has a class for adding method at runtime

you can read more about it here : https://www.ibm.com/developerworks/mydeveloperworks/groups/service/html/communityview?communityUuid=4d8031a4-58d3-4270-a160-6795db7b6bb5

link|improve this answer
feedback

I would mention three major projects (or groups of):

  • The Spring Framework: This is written by the top Java developers and architects. The catch is that is not for beginners, who would need to first understand what is Spring for.

  • All The 'Commons' projects of Apache: These are a bunch of very useful (and understandable) libraries.

  • jBillng: Implements well known design patterns, like Strategy or Chain of Responsibility in an easy to understand Java project.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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