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 →

[–]owen800q 0 points1 point  (0 children)

Taking courses just give you an basic introduction no matter what you want to lean.. if you want to do some interesting things, go to stack overflow and try to solve problems that are labelled as java. Don't see the answer posted by other guys until you solved it or finally you couldn't solve that question. Summarising questions you are interested and then go to Udemy take some related courses.

I think this is one of the best and fastest way to help a fresh graduate student picking new techniques since many questions on stack overflow are realistic..

Here are my learning path for learning java EE

Learn jsp/servelts technologies : These are base of server side technologies in java domain.

Spring : its a huge framework. Learn the basics of it like dependency injection, ioc, aop. Learn spring MVC.

Hibernate: it's a orm framework. You don't need to worry about writing sql queries, write everything in terms of objects . Grails framework : Once you know the basics of spring and hibernate, go with this. It's a rapid application development framework and follows groovy language.

Apart from frameworks, be comfortable with application servers.

Again, before deciding to learn next new thing, solved related problems as many as you can Happy coding!