Live data from Hacker News

Ask HN: Which Java Web Framework will stand out above others in 2012.

news.ycombinator.com

1–10 of 12 posts

Ask HN: Which Java Web Framework will stand out above others in 2012.

#1
Web has evolved and Java web frameworks are still in the 90's. What does the Hacker community think about which Java Web framework is going to nudge out the rest and really adopted by the masses.

Play is beautiful, Roo is confusing and seems like another me too. Struts, JSF are operating from coffins.

what will survive in 2012 and next few years?

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#2
I have dropped the server side frameworks in favor of Dojo, jQuery and Backbone. I use JAX-RS as my service layer to provide RESTful services to the newer stack. I have seen more and more developers abandoning the server side page frameworks in favor of the JavaScript frameworks and a REST API. JAX-RS with the JPA is a pretty nice set up for developing modern web apps, and I think we will see it's adoption increase for those that elect to use Java for their back end.

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#5
post #2

I have dropped the server side frameworks in favor of Dojo, jQuery and Backbone. I use JAX-RS as my service layer to provide RESTful services to the newer stack. I have seen more and more developers abandoning the server side page frameworks in favor of the JavaScript frameworks and a REST API. JAX-RS with the JPA is a pretty nice set up for developing modern web apps, and I think we will see it's adoption increase f…

I'm not the downvoter, but since I hate silent downvotes, this is probably more or less the reason:

This kind of app might be fine on the platforms where it's tested, but tends to have severe performance problems for others. Many of us have had our computers bogged down by very resource-intensive web apps, and this "Do everything on the client" philosophy is a common culprit. Exchanging ~50 ms on the server for ~250 ms on the client can become really user-hostile as you get further from the best-case scenario.

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#6
I was hoping to see more responses :). Looks like hacker community already has ditched Java Web frameworks.

I personally like how Play has evolved, but adoption is severely thin. They just got typesafe backing but Spring with the muscle behind it might be able to shove the rest away.

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#7
post #5
post #2

I have dropped the server side frameworks in favor of Dojo, jQuery and Backbone. I use JAX-RS as my service layer to provide RESTful services to the newer stack. I have seen more and more developers abandoning the server side page frameworks in favor of the JavaScript frameworks and a REST API. JAX-RS with the JPA is a pretty nice set up for developing modern web apps, and I think we will see it's adoption increase f…

I'm not the downvoter, but since I hate silent downvotes, this is probably more or less the reason: This kind of app might be fine on the platforms where it's tested, but tends to have severe performance problems for others. Many of us have had our computers bogged down by very resource-intensive web apps, and this "Do everything on the client" philosophy is a common culprit. Exchanging ~50 ms on the server for ~250…

The server still does all the heavy resource intensive stuff, the "business valuable" part. He is just moving templating and managing of state to the client.

I have the impression though, that a single page app will reveal problems like increased memory usage where in the classical way of writing webapps would be hidden by the constant page reloads (where hanging objects would get GCed anyway).

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#8
post #5
post #2

I have dropped the server side frameworks in favor of Dojo, jQuery and Backbone. I use JAX-RS as my service layer to provide RESTful services to the newer stack. I have seen more and more developers abandoning the server side page frameworks in favor of the JavaScript frameworks and a REST API. JAX-RS with the JPA is a pretty nice set up for developing modern web apps, and I think we will see it's adoption increase f…

I'm not the downvoter, but since I hate silent downvotes, this is probably more or less the reason: This kind of app might be fine on the platforms where it's tested, but tends to have severe performance problems for others. Many of us have had our computers bogged down by very resource-intensive web apps, and this "Do everything on the client" philosophy is a common culprit. Exchanging ~50 ms on the server for ~250…

Inefficiencies are due to sub standard development practices or non-optimized technology. The fact is the client side frameworks have matured to the point, where if used correctly they can provide the same performance metrics as server frameworks. In some cases they provide patterns that lend themselves to better usability and can actually make the application feel more responsive. While it is true a badly designed server side page does not bog the client machine down, the fact that it is client side does not guarantee that it will bog down the client.

No matter which side of the fence you develop on, if you have a page that is not performing, you have a usability issue and it needs to be addressed. This is less of an issue with the technology and more of an issue with how the technology is being uses or rather misused.

I understand that people are dogmatic about this subject and that is why I received the downvotes, but to ignore the fact that it is the way the web is moving is to ignore a massive trend that is well underway.

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#9
My Favorite is thye Wicket framework. After having used JSF , which is a hellhole, I found wicket to be remarkably versatile and powerful. It integrates cleanly with Jquery. DOJO aw well as Spring. It is the only J2EE framework where designers can tweak HTML templates without the programmers having to worry about integrating those changes back.

Re: Ask HN: Which Java Web Framework will stand out above others in 2012.

#10

My Favorite is thye Wicket framework. After having used JSF , which is a hellhole, I found wicket to be remarkably versatile and powerful. It integrates cleanly with Jquery. DOJO aw well as Spring. It is the only J2EE framework where designers can tweak HTML templates without the programmers having to worry about integrating those changes back.

Yeah, I was wondering what the hell the OP was referring to when it was claimed that web frameworks are stuck in the 90s. We use wicket both for our customer-facing sites, and most of our various departmental administration sites. It's a great, modern, component-oriented framework that doesn't have any XML hell.

My default reaction to HN hipster kiddos eschewing Java for web development based on hearsay/generational bias/fashion is to roll my eyes and simply not post, but in this case I'm glad to see there's at least someone else on this site that experiences the virtues of Wicket.

Post reply on HN