M
M
Morningstar_T2018-09-18 08:31:09
Java
Morningstar_T, 2018-09-18 08:31:09

Where can I find well-documented Java projects for beginners to read?

I want to read well (commented?) documented code of any open-source project.
Does anyone have a couple of links where you can see examples of good, high-quality code for self-study purposes?
If there are comments to the code, they will only be happy. It is possible with documentation as an option.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
F
Frozen Coder, 2018-09-18
@frozen_coder

Go to github and search by trends and java language:
https://github.com/trending/java?since=monthly
Here are the most popular and developed turnips of the month.
Or just go look at the popular java libraries. Guava, Apache Commons, for example. Have you read the standard library yet?
Spring has well documented code.
Google also knows a lot about all sorts of examples of implementation on a particular framework, either, see, again, on the github.

E
Evhen, 2018-09-18
@EugeneP2

IMHO, it's better to look at the source code in the process of using it, when it's already clear why this class / method is needed. For example, you needed ImmutableMap with Guava, in the IDE you went to the source by Ctrl + click, looked at the implementation, and now ImmutableMap does not seem like some kind of black box to you, you spied some interesting solutions. Or in spring-jdbc, JdbcTemplate, for simplified interaction with the database, and now you already know how it is implemented and there is no “magic” there, you learned the nuances of working with jdbc api, etc. The same applies to the standard library java.util.*, java.lang.* ...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question