I am considering creating my own website using Java and am trying to decide what framework to use. However, doing a quick search for Java frameworks returns more than 50 to choose from! My website is just going to be for my own enjoyment of building it in the beginning, but if it becomes popular it would be good for it to have some scalability, or to at least be able to redesign for that. Of the more common frameworks, what are the main differences between them, and are there instances where one significantly outperforms? For example, high-traffic enterprise applications versus low-traffic small applications. I'm also wondering if some are much easier to learn and use than others. Does anyone have any experience with some of these frameworks and is able to make a recommendation, or does the sheer number of choices just serve as an early warning to avoid java-based web development if possible?
|
18
|
|
|
|
|
|
I've used Tapestry 3, Wicket, Echo, and JSF fairly extensively. I'd really recommend you look those over and pick the one that appears the easiest for you, and to most closely fit the way you prefer to work. Of them, the most comfortable for me to work with was Wicket, due to the lightweight nature of component building and simplicity of page templating. That goes doubly so if you are using your own db code instead of Hibernate or some other framework (I was never completely happy with Wicket Hibernate or Spring Integration). Echo is great if you don't mind writing all of your layout in Java. I know that is different now, but I still think that product serves a fairly narrow niche. They change the development model with every major release as well it seems. Tapestry is a great product, but it is obviously very different from the others in terms of development model as it is led mainly by one dude. Howard Lewis Ship is no doubt quite smart, but I am disappointed with their decision to basically forget backwards compatibility with each release. Again, though, for your needs this may not matter, and I've always found the Tapestry products pleasurable to work against. JSF has been out for years, and still feels like something that a Struts guy built to fix all of the problems of Struts. Without really understanding all of the problems with Struts. It still has an unfinished feel to it, although the product is obviously very flexible. I use it and have some fondness for it, with great hopes for its future. I think the next release (2.0) to be delivered in JEE6 will really bring it into its own, with a new template syntax (similar to Facelets) and a simplified component model (custom components in only 1 file... finally). And, of course, there are a million smaller frameworks and tools that get their own following (Velocity for basic needs, raw JSPs, Struts, etc). I generally prefer component oriented frameworks myself, though. In the end, I'd recommend just taking a look at Tapestry, Wicket, and JSF and just picking the one that feels the best to you. You'll probably find one that just fits the way you like to work very quickly. |
||||||
|
|
|
Disclamer: I work at IT Mill as a programmer If you are doing something RIAish, you might want to take look at IT Mill Toolkit. It's an open source UI-oriented AJAX framework that, to me, is nice to use (I come from a PHP background myself). There's a case study that compares doing the same application (i.e. two applications with the same set of features) in Icefaces and IT Mill Toolkit. In a nutshell, it states that the UI development was considerably faster. Even though the study is hosted at the company's wiki, I can assure that it's objective, genuine and truthful, although I can't force you in believing me. |
||
|
|
|
|
I think for your modest requirements, you just need to code up servlets or simple jsp pages that you can serve from Tomcat server. I dont think you need any kind of web-framework (like struts) for personal web-site data |
||
|
|
|
|
My favorite is the Spring Framework. With 2.5 Spring MVC is soooo kick ass, with new annotations, convention over configuration features, etc. If you're just doing something super simple you could also just try using the regular Servlet API and not bother with a framework. |
||
|
|
|
I've heard good things about the Spring Framework too. In general, though, I've been underwhelmed by most Java web frameworks I've looked at (esp Struts). For a simple app I'd definitely consider using "raw" servlets and JSPs and not worry about adopting a framework. If the servlets are well written, it should be straightforward in the future to port to a framework if necessary when the app grows in complexity. |
||||
|
|
|
I've recently started using the Stripes Framework. If you're looking for a request based framework that's really easy to use, but doesn't impose any limits on what you are doing I'd highly recommend it. It's similar to struts, but it goes way beyond it. There are even some plugin projects that enable you to do use hibernate or jpa with very little configuration. There are a lot of good frameworks out there though I've heard wicket is a good one as well, but I haven't used it. |
||
|
|
|
|
I recommend the component oriented Wicket framework. It allows you to write your web application in plain old Java code, you can use POJOs as the model for all components and don't need to mess around with huge XML configuration files. I had successfully developed an online banking application with Struts when I discovered Wicket and saw how easy web application development can be! |
||
|
|
|
|
Some info on Tapestry: I'm familiar with Tapestry 4 and find it to be a great framework. The two biggest problems it has are 1) the mental model is rather different from those of other frameworks, so if you're familiar with one of them, you may have to "unlearn what you have learned;" 2) backwards compatibility breakage has been a problem. To his credit, Mr. Ship does seem to be addressing the latter point in Tapestry 5. The biggest example is in the page classes: in previous incarnations, page classes descended from a base class provided by Tapestry; incompatible API changes in this class were the cause of a large number of backward compatibility problems. In Tapestry 5, pages are POJOs which are enhanced at runtime with the "magic Tapestry fairy dust" via annotations. So as long as the contract for the annotations is maintained, changes to Tapestry won't affect your page classes. As for the "unlearning" part, I've found that Tapestry's model is actually quite straightforward and sensible. So yes, there's a bit of a learning curve due to having to get past any preconceived notions of how things ought to work, but I've found it's very much worth it. And it's way better than Struts. |
|||
|
|
|
|
Can't believe no one has mentioned GWT |
||
|
|
|
My favorite way to go for really simple apps is Apache VelocityTools (VelocityLayoutServlet) with Velosurf (http://velosurf.sourceforge.net). For more complex apps, Spring MVC or Struts 2. |
||
|
|
|
|
All of them - that's the problem ;-) |
||
|
|
|
|
My pick is Wicket!! |
||
|
|
|
|
Saying "use JSF" is a little to simple. When you decide to use JSF, you have to choose a component library on top of it. Will you use MyFaces Tomahawk, Trinidad, Tobago (http://myfaces.apache.org/)? Or maybe ICEfaces (http://www.icefaces.org/)? Oh, and if you use ICEfaces, will you use JSPs or Facelets for your views? In my opinion it is to hard to tell. Nobody has the time to evaluate all the promising alternatives, at least in the projects I work on, because they are not big enough to do three month evaluation phases. However, you should look around for some that has a big and active community and isn't gone in a year. JSF is around for some time, and since it gets pushed by sun, it will be around for some more. I can't say if it's the best choice, but it will be a good one. |
||
|
|
|
|
Oracle's ADF 11g. |
||
|
|
|
|
http://zkoss.org - the good one |
||
|
|
|
|
Haven't tried it myself, but I think has a lot of potential... coming from php and classic asp, it's the first java web framework that sound promising to me.... |
||
|
|
|
|
Another one to consider would be Grails. Although it isn't strictly a Java framework, it depends on Groovy (if you haven't seen this before, this is a dynamic language that runs on the JVM). Most valid Java is also valid Groovy, so it is pretty easy to learn. My last project used Grails, and whilst I'd never used Groovy before, I discovered:
There is a downside: it is a very "clever" framework that hides a lot from you, so when things go wrong it can be very time consuming to find the problem. The project I mentioned would simply not have shipped on time or on budget if we'd gone for a more traditional framework (even one that we're familar and skilled with such as SpringMVC), so Grails is definitely one that we'll continue to pick in the future. (but +1 for Wicket and Stripes, two excellent frameworks). |
||
|
|
