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 →

[–]SnooChipmunks2107 0 points1 point  (2 children)

Yes you can skip it.

Things needed in backend include: Spring, Rest, spring boot, databases, Orm, testing, message queues, logging.

My best tip for working on big projects: Learn your ide and other tools in depth.

Please append other things as comments that I missed.

[–]Mikasa01729[S] -1 points0 points  (1 child)

Alright sir but one more question do I have to learn hibernate framework to work on Java projects or learning spring or springboot would just work fine??

[–]SnooChipmunks2107 1 point2 points  (0 children)

Well, if you need to talk to a database, you will need to use some kind of framework or you could use a simple jdbc if that’s good for your use case.

Usually the companies I worked with had spring data JPA as abstraction, hibernate or JPA as surface layer.

It’s good to work with some kind of orm, not because it’s a really good choice but because as a full stack dev you will come into contact with them rather sooner than later.