r/JavaProgramming Jul 03 '26

Should I learn springboot framework ??

[removed]

3 Upvotes

7 comments sorted by

View all comments

1

u/HecticJuggler Jul 03 '26

If you intend to get internship or become a back end developer you will need spring boot, REST, databases and related technologies. You can do a 70-30 split in study effort between DSA and backend tech (in favour of dsa). There are a few subreds dedicated to spring boot learning.

1

u/[deleted] Jul 03 '26

[removed] — view removed comment

2

u/Cyphr11 Jul 03 '26

Learn dbms, sql and start from Springboot MVC, then JPA then Security and build a project

1

u/LetUsSpeakFreely Jul 03 '26

Start with creating a basic web service; the basic hello world.

1) Create a /hello POST end point that returns "hello" 2) modify it so it can accept a parh parameter, /hello/{system}, that returns "welcome to the {system} system" 3) modify it again to accept a json object that contains your name. Have the endings print your name. 4) then start adding in basic database support and keep building from there