|
|
|
Good learning material – JAVA, Spring
|
|
30 points
by siropa
3066 days ago
|
|
Hi! I graduated college and am two years into Software development and would like to keep up with the latest technologies/ hone my skills. What books/learning materials do you guys suggest for following topics:
1. Spring
2. Springboot
3. JAVA
4. Object Oriented programming
5. Mongodb
6. Microservices
7. RESTful webservices
8. Any general books all programmers must own Thanks :) |
|
The things you've listed sort of split into two separate categories: Paradigms/Architectures, and specific tools.
I'd focus on the Paradigms and Architectures first - those are the skills that will be portable across tech stacks and will be useful for a longer period of time.
For OOP, I actually enjoyed Head First Object Oriented Analysis and Design [1]. The Head First books aren't for everyone, but I like they way they encourage you to do exercises to help reinforce what you've learned.
For RESTful services, I found Roy Fielding's original PhD dissertation on REST[2] to be quite helpful for a conceptual overview. It's a long read, but I enjoyed it.
For Spring and Spring Boot, I've found the official Spring guides[3] to be better than any of the books I've read. So many Spring books seem to go out of their way to try to be as long as possible. The guides, on the other hand, tend to be short and to the point.
As for general books...the one I always circle back to is Structure and Interpretation of Computer Programs[4]. I found that once you've worked through it, so many aspects of programming just make more sense. Lots of people find it a difficult book to work through, but I've found that the more times I revisit the book over the course of my career, the more helpful it is. Every time I read it I seem to have an 'aha!' moment I hadn't experienced previously.
[1] https://www.amazon.com/Head-First-Object-Oriented-Analysis-D...
[2] https://www.ics.uci.edu/~fielding/pubs/dissertation/fielding...
[3] https://spring.io/guides
[4] https://mitpress.mit.edu/sicp/full-text/book/book.html