Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JGoodies Binding vs. JSR 295

What is the practical difference between JGoodies Binding and JSR 295, Beans Binding? They both seem to be intended for the same purpose and get their job done (with slightly different approaches). JGoodies Binding is more mature, but JSR 295 is eventually getting part of JDK in Java 7.

Using a standard part of JDK is surely preferable to using a separate library for the same function, but are there other factors to consider? Are there yet some other alternatives? Choosing between these is pretty irreversible architectural decision...

like image 894
Joonas Pulakka Avatar asked Feb 04 '09 09:02

Joonas Pulakka


1 Answers

Just use JGoodies, as it is mature and works. There are certainly ideas from the JGoodies framework being incorporated into the JSR, but as it is not there at this time yet, the options are limited.

The current state seems to be that the JSR will not even get into JDK 7, so we have to wait for JDK 8. Alex Miller has a great page which provides a nice overview about the things which will go in jdk7 and which won't. http://tech.puredanger.com/java7

Beans Binding has a red NO to it, so...

Hooray, JGoodies.

Cheers

like image 182
user55039 Avatar answered Nov 19 '22 19:11

user55039