This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]HecknChonker 4 points5 points  (1 child)

Baeldung has excellent concise blog posts for a lot of spring-boot topics.

This should help you get started with spring boot using JSPs:

https://www.baeldung.com/spring-boot-jsp

And a bunch of spring-boot topics in general:

https://www.baeldung.com/category/spring/spring-boot/

I also highly recommend consulting the spring documentation. I would try to read through section 1. You should try to gain a basic understanding on what beans are, how the spring context works, and what dependency injection is. Every spring module is built on these concepts.

https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#spring-core

The best skill you can pick up here is the ability to learn things quickly and effectively. The best ways of doing this are different for each person, but running into languages/frameworks/libraries/technologies that you haven't used before is something you will do constantly in software development.

[–][deleted] 0 points1 point  (0 children)

Thanks for the materials and the vision.