vote up 7 vote down star
2

Java has lots of web frameworks to choose from and personally we may like different frameworks but in our job we can't use the framework we like personally due to many reasons, so which framework you use in your day job and which framework you prefer personally ??

flag

50% accept rate
see this java web frameworks war going on: stackoverflow.com/questions/743298/… – flybywire Apr 13 at 8:00

23 Answers

vote up 7 vote down

I have built a large project using Apache Wicket, and found it to be pretty good. Its component model works well, and it enforces good practices. You don't need to learn any new template language, it just works with standard XHTML. Also, it avoids a lot of the annoying complexity of some web frameworks by defaulting to sensible functionality rather than requiring everything to be configured in advance.

On the downside, it can require quite a bit of boilerplate, although this is more a limitation on Java.

In my personal projects, I'm trying to use Scala more, including the Scala Liftweb framework. Scala is pretty-much "Java 2.0", or it should be. It compiles to standard Java class files, and interoperates seamlessly with Java code. It has all the features everyone wishes Java had, but which it probably never will, including closures. Liftweb is able to exploit Scala's flexibility to reduce the need for boilerplate code.

Unfortunately, I think Scala is still to "green" for commercial work, but give it 6-12 months.

link|flag
vote up 6 vote down

I use the Spring MVC frameworks (Servlet and Portlet). I am pretty happy about it and don't prefer any other. The only limitation at work is that some systems are using Spring version 1 or 2, while I prefer 2.5 :)

link|flag
1  
Spring 2.5 is a vast improvement over 1.X or 2.X. The support for annotations in this version means you can eliminate most of the XML configuration. – Don Nov 21 '08 at 17:28
vote up 4 vote down

I work at a company where we have our own framework, and I wish we didn't.

link|flag
I'm in similar situation, but I'm not sure about if I wish that we didn't have our own proprietary framework. There is a lot of think that works great in it, but there is small movement forward in last time... – Supowski Apr 15 at 14:15
vote up 4 vote down

We use Apache Wicket and have been very impressed.

Its a component-based framework with powerful templating capabilities, excellent support for i18n, and a strong bias towards convention over configuration. It makes component development dead easy, and the scope for re-use of these components makes it very productive. I've heard it described as "JSF done right" (although having not used JSF I can't comment).

link|flag
vote up 3 vote down

Do you mean to start a religious war? ;-)

I personally use IceFaces in my day-to-day job. I've heard many good things about Wicket, though. And the Stripes Framework seems to be getting a lot of attention around here.

As for my personally preferred framework... I really don't know. No Java based web framework has got it nailed yet. My suggestion is just to pick one and learn it inside out, learn how to get the best out of it. JSF / IceFaces works fine provided you know how to work around some of its quirks.

link|flag
no it wasn't intent to start religious war, i think we had enough alredy i also use icefaces/JSF in my day job i just wanted to know which framework people use in their daily job – Dinesh Simkhada Sep 17 '08 at 15:43
vote up 3 vote down

I use the Stripes Framework as my web framework, Spring for dependency injection, CXF for web services, and Hibernate for persistence.

link|flag
vote up 3 vote down

We use Tapestry 4.0. The most impressive thing about it is its extreme modularity; using its dependency injection framework (Hivemind) you can replace just about any class in the framework in order to customize its behavior. We've taken advantage of that to customize:

  • URL generation and parsing in order to have "friendly" URLs in a very specific format.
  • Management of database connection lifecycle.
  • Supporting multiple logical websites, with different skins but similar behavior, on a single web app.
  • Integrating the web application with an off-the-shelf content-management system to manage static content.

However, we've found it to have a pretty steep learning curve (seriously, it can take months for people to get fully up to speed with it), and the most maddening thing is that even minor version differences such as 4.0 to 4.1 are not backward-compatible. We're pretty heavily invested in it but upgrading to Tapestry 5 looks just about impossible.

link|flag
vote up 2 vote down

I use Struts 1, since that is what was being used when I inherited the projects.

link|flag
vote up 2 vote down

Being an old webwork hand we went with Struts 2 for our current project but we rapidly got into trouble when the javascript on the client became quickly unmanageable. We are currently looking at rewriting in GWT and using the Struts 2 back end (based on XWork).

For rapid prototyping I much prefer Grails which just works in most situations and lets me get on with writing the application.

link|flag
vote up 1 vote down

My last 2 java webapps have used SpringMVC, and before that Cocoon.

Spring was used because of its simplicity, and because we were already using spring for several other layer of the application that were residing in the same web application. This allowed easy reuse of DAOs, Services, etc.

Cocoon was used because all of the data in that project was XML, and Cocoon was simply the best choice for interacting with it.

I have also used Struts before, but not enough to say anything positive or negative about it.

link|flag
vote up 1 vote down

We use Seam on JBoss AS at work, and it's great if your system uses JPA and EJBs and so forth. Putting together pages and components is relatively painless if you're comfortable with JavaServer Faces. Seam is presented as being easier and simpler than other frameworks, but I've found that's only true if you're using Seam-Gen and building rudimentary web applications.

For personal projects, Wicket is where it's at for me.

link|flag
vote up 1 vote down

I asked a similar question several weeks ago:

http://stackoverflow.com/questions/24596/what-web-application-framework-for-java-is-recommended

link|flag
vote up 0 vote down

We're using JavaServerFaces (V1.1 for now) with MyFaces Trinidad along von JavaEE Stack @ JBoss. Works actually realy well in most cases.

link|flag
vote up 0 vote down

We use Spring MVC. We use Spring Webflow on top of that if we have to implement certain "flows" or wizards. I'm pretty happy using that.

link|flag
vote up 0 vote down

Oracle ADF Faces here! Also Oracle JHeadstart as a RAD tool to complement it. It's not free however, so keep that in mind.

link|flag
vote up 0 vote down

We use Spring MVC. At my last job (I changed jobs two weeks ago) we used Stripes and Tapestry 4.1. I'd have to say Stripes was my favorite. Tapestry was OK, but it got a complete non-backward-compatable re-write for version 5, which sucks for anyone stuck on v4.

link|flag
vote up 0 vote down

We use Struts 1.2x but I prefer Ruby on Rails.

link|flag
vote up 0 vote down

We are moving from Struts to ADF.

link|flag
vote up 0 vote down

I use Struts 2.

link|flag
vote up 0 vote down

I prefer plain jsp over xml-based mvc frameworks like Struts. The simple fact like you get all the coding support from your IDE (since your writing Java code, not xml) makes jsp better than over-engineered competitors.

link|flag
vote up 0 vote down

We've been using a combination of MyFaces, Tomahawk, Facelets and RichFaces for the last year or so. We're looking into adding SpringWebFlow or scrapping all that and trying out Grails.

link|flag
vote up 0 vote down

Well, We use Wicket at work for a large public facing social network. We get quite a bit of traffic, to the point where I wish we did not choose to use wicket as the framework of choice for this project. Statelessness is the way to go. Everything else can be imitated with client-side javascript.

link|flag
vote up 0 vote down

I got the chance to use Struts. Didn't like those action forms that much. Hate them actually. But they get the job done, and a lot of web apps in java have used Struts (based on a recent job search and my former company's clients) so there's still some work to find if you're experienced in struts.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.