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 ??
|
2
|
|||
|
|
|
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. |
||
|
|
|
|
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 :) |
||||
|
|
|
I work at a company where we have our own framework, and I wish we didn't. |
||
|
|
|
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). |
||
|
|
|
|
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. |
||
|
|
|
I use the Stripes Framework as my web framework, Spring for dependency injection, CXF for web services, and Hibernate for persistence. |
||
|
|
|
|
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:
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. |
||
|
|
|
|
I use Struts 1, since that is what was being used when I inherited the projects. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
I asked a similar question several weeks ago: http://stackoverflow.com/questions/24596/what-web-application-framework-for-java-is-recommended |
||
|
|
|
|
We're using JavaServerFaces (V1.1 for now) with MyFaces Trinidad along von JavaEE Stack @ JBoss. Works actually realy well in most cases. |
||
|
|
|
|
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. |
||
|
|
|
|
Oracle ADF Faces here! Also Oracle JHeadstart as a RAD tool to complement it. It's not free however, so keep that in mind. |
||
|
|
|
|
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. |
||
|
|
|
|
We use Struts 1.2x but I prefer Ruby on Rails. |
||
|
|
|
|
We are moving from Struts to ADF. |
||
|
|
|
|
I use Struts 2. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
