I am new to Java. Its only been six months but I do understand Java.
While reading about it sometimes, I come across these terms – Groovy, Grails, Hibernate, JBoss, Jade and many more.
I know I can read all about them individually. But can somebody give me a treetop view of what is happening here?
What is all this? We have Java and these are based on Java?
Why so many things? Why do we need them?
To answer why we have them: programming languages are not enough. If you were to tell me at an interview “I know Java” but didn’t know about things like Hibernate, Spring, log4j, JAXB, etc. I would say you don’t know Java. That’s because no one builds applications with just the core language any more. They reuse frameworks and components so they can spend less time developing infrastructure and more time solving business problems. So, Hibernate, JBoss, and Jade are reusable frameworks or platforms for the Java language. Similarly Grails is a framework for the Groovy language, both of which support integration with Java.
It’s a cool time to be a developer, but there is also so much to learn 🙂