Joshua Java

10 Java Technology Resolution for 2009

Posted on: January 1, 2009

2009 is coming to your way and it’s time to get ready on what technology lies ahead. Refactor, refactor and refactor is the theme for 2009. A whole new technology is coming your way and it’s good to take a sneak peek on what technology is worth evaluating to be used for our projects in 2009. The first half technology are the technologies that you should keep your eyes at while the next half are the technologies that you might want to start trying for your next project in 2009. So here are the lists for 2009:

  1. Rails 3
  2. Now Rails is not exactly a Java framework, but with the ability to run Rails on JVM with JRuby IMHO it’s worth considering to include Rails to the list. Rails has enjoyed being the popular web action framework for getting things ready in split seconds. Now with the join force with Merb, Rails is gaining momentum to become more popular than ever. Merb is ORM and javascript library agnostic framework with superb performance over Rails. It will be interesting to keep your eyes on how this advantage can be added to Rails in 2009.

  3. Grails 1.1
  4. If you’re not really comfortable with Rails/Ruby or perhaps you would like to use your existing Java knowledge without sacrificing the development productivity, then you might want to keep your eyes on the next up and coming release of Grails. It should be interesting to follow this new release since G2One, the company that is behind Groovy and Grails has been acquired by SpringSource. And if there is one thing that Grails is lack of is its marketing. It should be interesting to see how SpringSource, the company that is behind the popular Spring Framework able to make Grails to be more popular than ever, especially in the Java community itself. The recent Beta release has many convenient functionality on the ORM side which makes it more interesting to be evaluated.

  5. WebBeans & Seam 3
  6. If you need something that is more component based with dependency injection feature that is becoming as the standards, then you should keep your eyes on the up and coming release of WebBeans in 2009. It’s still under heavy development and gaining community feedback. This is the good thing about WebBeans, as its spec leader is always encouraging the community to give feedback about the reference documentation and the source code itself. Not only that WebBeans is the standards for dependency injection, it also enable us to create custom scope and type binding. WebBeans will revolutionize the way we built web application as it will enable us to build true OO application instead of anemic domain model. WebBeans will be the backbone for the next major release of Seam. If you have always liked the idea of Seam, WebBeans and Seam 3 will be something that is worth waiting for in 2009.

  7. iBatis 3
  8. If you never liked the idea about ORM and just love using SQL and map it to your domain objects, then you will love what iBatis will have in its next major release. One of the most interesting feature is that it will enable us to write the SQL inside Java code by using annotation. Though I think that it’s not a bad thing to have your SQL written in XML, but it is still an interesting feature to have.

  9. JavaFX
  10. If you are looking for a RIA technology with multimedia capability that can run on any platform from mobile to browser then you should keep your eyes on the next major release of JavaFX that will be presented in next year’s JavaOne conference. JavaFX is a big plus for Java developer, besides capable to run on any platform, with JavaFX you won’t have to learn a new domain specific language for creating RIA apps.

  11. JSecurity
  12. If you are looking for a security framework that can be plugged into any environment, like desktop or web, you might be interested in what JSecurity has got to offer. Security is a complex issue as it is built upon many years of experience, but using a security framework should not be a tough task, infact it should be as simple as possible. With JSecurity you would only be writing a simple configuration in web.xml. JSecurity is not tightly coupled to a specific framework nor environment, you can use it in any environment, let it be web or even desktop or you can even put it in your EJB layer without a hassle.

  13. Buildr
  14. Not many people recognize Buildr, but as a matter of fact it’s one of a great solution for building your project. Another contender would be Ivy that is build on top of Ant. But IMHO Ivy doesn’t really solve what is really important on project build system as it is only an extension to Ant for dependency management. Beside as a dependency manager, what’s more important is that Buildr ease us to create your custom script because it uses Ruby syntax. In maven put this as maven plugin/MOJO while in Ant think of it as Ant custom tasks. Many times plugins/custom tasks that is built by someone else may not suit your needs. Previously I used the maven flex plugin which does not suits our needs. Creating both Ant task and Maven also sometimes is not easy, not to mention sometimes it also requires more work. So it would be interesting to use Buildr in co-existence with maven in your project.

  15. JBoss AS 5
  16. JBoss has recenlty released their latest major release which is their Java EE 5 compliant appserver that is built upon its new microcontainer which is slimmer than its previous JMX Microkernel. Besides having microcontainer, it also supports OSGi. The interesting part from JBoss other than its new microcontainer is that it will be the first appserver that supports WeBBeans. Besides having support for WebBeans, JBoss AS 5 also has support for Rails which is still under development and just released the beta version recently. It will be interesting to keep your eyes on what other technology that JBoss will support in 2009.

  17. Glassfish v3_prelude
  18. If you don’t like JBoss for one reason or the other and would prefer something else, IMHO it’s worth evaluating the latest version of Glassfish as it is more revolutionary compared to the previous version. What’s so interesting about Glassfish is that it is slimmer and able to fetch the resources that you want to be added to the appserver using its update tool over the internet. Besides being slimmer and having faster bootstrap time, it also supports some of the RAD framework like Ruby on Rails and Grails. Which makes it also supports JRuby and Groovy out of the box. Another cool thing about GF is, just like JBoss it supports modular OSGi.

  19. JRuby
  20. The last technology that is worth evaluating is has got to be JRuby itself. IMHO it wouldn’t be fair not to mention this technology as it has evolved how Java programmers solve problems in their project. With more and more expectations to write code in a shorter time frame and more frameworks and application server that supports JRuby and Rails like Glassfish v3_prelude and JBoss AS 5, it would be sane to consider and evaluate JRuby to co-exist with Java. Also as Merb is faster running on JRuby and Merb will join forces with Rails to become Rails 3.0 would be another reason to evaluate JRuby for your next project.

So there you go. 10 Java technology that is worth evaluating and keeping your eyes on during the year of 2009. Don’t forget also to give some feedback for projects that is still under design phase. Who knows that you can get the framework that you really desire after all these times in that framework. Last but not least, Happy new year 2009! And best of luck to us all.

22 Responses to "10 Java Technology Resolution for 2009"

Thanks for the shout-out for JBoss-Rails. I think 2009 will definitely be a great year for JBoss technology innovation, across the board.

“WebBeans will revolutionize the way we built web application as it will enable us to build true OO application instead of anemic domain model”?

Correction: WebBeans will revolutionize the way we built web applications as it will enable us to build quick-and-dirty-completely-procedural-shit applications.

It seems that JPA entities cannot be WebBeans (http://docs.jboss.org/webbeans/reference/1.0/en-US/html/intro.html#d0e470), thus, cannot be injected with dependencies (a basic requirement to your ‘true OO’ domain model, I guess), and every Seam (aka WebBeans) tutorial out there shows you how to code all of your business code directly in JSF backing beans. Very revolutionary!

WebBeans is just a convenience, not an enabler. Spring+AspectJ already enables injecting dependencies into JPA/Hibernate entities. But it doesn’t make it easy to create a good domain model, just because it is hard. The technology isn’t the limiting factor, the (lack of) skill of so-called ‘architects’ is.

I’d love to see IBatis 3, especially b/c the existing configuration option is really unflexible. However, the IBatis 3.0 Whiteboard hasn’t been updated since April 2008, so I wonder whether this will happen in 2009.

Would be nice anyway!

[…] 10 Java Technology Resolution for 2009 Tags: Glassfish, Grails, ibatis, Java, JavaFX, jruby, JSecurity, rails, seam, security, […]

[…] bookmarks tagged technologyIdaho Homeowner Insurance – Compare Multiple Quotes 10 Java Technology Resolution for 2009 « Joshua J… saved by 1 others     Mawata123 bookmarked on 01/01/09 | […]

Ivy is just a dependency manager. How It can compete ?!

Please make the comparaison with a true build system like Maven, Ant, Gradle…

Personally, I’m ultimately going for JavaFX, SpringDM and Glassfish V3_prelude

[…] começarmos olhando para as tecnologias que provavelmente iram se despontar no mercado. Veja este artigo de Joshua Partogi apontando (segundo a sua opinião) as tecnologias que ganharam seu espaço, com […]

[…] 10 Java Technology Resolution for 2009 « Joshua Java. […]

If you want to do charting and calculations using scripting in a Java environment, check out Mathnium at http://www.mathnium.com.

For developing Swing applications, try the graphical layout editor Gola at http://gola.mathnium.com .

No hype. Real software that is useful and works.

[…] Gazete haberi gibi başlık oldu ama, theserverside.com‘da gördüğüm ve bir weblog mesajı. İncelemenizi tavsiye […]

Great article. I agree with your list, especially about Rails 3, Grails, JBoss AS 5 and Webbeans.
Those technologies will all affect how web and enterprise software will be developed in the coming years.

[…] 10 Java Technology Resolution for 2009 2009 is coming to your way and it’s time to get ready on what technology lies ahead. Refactor, refactor and […] […]

Thank you bro nice tuttorial 🙂

Spring? hahahaha

Are you kidding me? IMO Revolution #1 for 2009 is Scala.

There’s one thing stopping JavaFX from becoming big at the moment : A usable Eclipse plugin.

Wicket, Wicket, Wicket!

[…] Posted in Blog Walking Habis blog walking ke tempat Om Joshua, beliau menulis tentang Resolusi 10 teknologi  java yang akan berkembang pesat di 2009 menurut beliau, di sini. […]

Are you kidding me? IMO Revolution #1 for 2009 is Scala

http://youtube.an3m1.com/

http://vb.lana.an3m1.com/

thanks.. nice share,,,

Leave a comment