Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am just starting with web application. Which framework should I try : struts 2 jsf? Both seem pretty good.

share|improve this question
10  
No one can give you a definitive answer on a question like that (esp. without knowing more about your needs). But I suggest you take a look at the multitude of prior "which Java web framework?" questions on SO: stackoverflow.com/questions/… and stackoverflow.com/questions/… – Jonik May 16 '10 at 20:25

closed as not constructive by Bo Persson, kleopatra, A. R. S., Ted Hopp, Bill the Lizard Nov 11 '12 at 15:14

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

Struts 2 is an Action Framework whereas JSF is a Component Framework.

An Action Framework is intimately tied to the HTTP request cycle and request format. A Component Framework tends to hide the underly HTTP request and use its own, higher level abstraction.

Action Frameworks tend to work better in stateless environments, Component Framework typically have a lot of session state associated with them.

If you're going to do a "web site", where URLs are important, lots of read only, higher loads of simpler traffic, etc. then an Action Framework may be more suitable.

If its a back office application, lots of CRUD screens, not as many users, complicated page and workflows, lots of page component interaction, then a Component Framework will be more suitable.

Both frameworks can do both jobs, just some are easier for the coder than the other for certain tasks.

share|improve this answer
4  
Nicely outlined. I myself would however have used the terms "request based MVC framework" and "component based MVC framework". – BalusC May 16 '10 at 20:29
If you decide to go with JSF, you might benefit from also looking at Seam (seamframework.org), which could simplify tying together the UI layer with the backing beans (business & persistence objects) and handling application state. – Jonik May 16 '10 at 20:45
1  
going with JSF+ Spring combination is much better then JSF+ Seam, because of the vibrant Spring community and flexibility of Spring. I find Seam to cumbersome to work with and Seam also doesn't have a good support community if you get stuck with seam's wierd exceptions! – Tarun Sapra Sep 2 '11 at 15:10

there exists also good ajax solutions for struts2 so this is not a reason for JSF.

See: http://code.google.com/p/struts2-jquery/

share|improve this answer

JSF is a standard Java EE 6 technology, Struts isn't.

share|improve this answer
12  
That should not be a compelling reason to choose it as a technology. EJB 1.x and 2.x was a standard too. – Steven Benitez Nov 21 '10 at 18:55
2  
Depends on the life expectancy of your application. We have long lived applications and have found that sticking to standard technologies make them easier to maintain in the long runn. – Thorbjørn Ravn Andersen Mar 5 '11 at 9:36
Right! but the way JSF was built as in youtube.com/watch?v=9ei-rbULWoA#t=47m , James Gosling commented "I hate JSF with a passion. [..] so, Microsoft had this thing called ASF, they go on a marketing campaign saying, "this is the greatest thing since sliced bread" [..] And if your answer is "that's stupid - there's a better way to do that", the press by and large can't parse your sentences. And so we did do JSF as basically a clone of Microsoft just because it was easier to explain to the press. And then it wouldn't die" – samarjit samanta May 2 at 2:41
@samarjitsamanta sounds like jsp, not jsf. – Thorbjørn Ravn Andersen May 2 at 6:51

If you are just starting, then either Struts or JSF would be beneficial.

Struts has a much larger installation base, but JSF is a new and emerging standard that is clearly the path of future Java web application development.

share|improve this answer
@Jens: "Struts" and "JSF" are framework/library names, not code! Please don't format them as code. – BalusC Nov 11 '12 at 11:14

disclaimer: I do not know them, this is a general advice that will likely apply to this situation

You should read some of the documentation of both: if one is much more clear and understandable than the other, pick that one!

Otherwise try to use them both and see which one is good for you.

share|improve this answer
Notice: as today (since a few days ago, actually) Struts2 docs are a little messed up (css problems) – leonbloy May 17 '10 at 14:08

There are many Java web frameworks besides Strusts2 and JSF. Some are old and some are very new. Most of them are decent. I would use the following criteria to judge a selection:

  1. Project deadline: I would prefer a rapid web application development framework if time is a constraint. At the end of a day, showing something to customer as quickly as possible is always a good thing.
  2. Learning curve of the framework for the team
  3. Technology: this is about each individual framework's implementation and requirement. Different people may have different opinions. Personally, I am sick of both Struts2 and JSF. Too many artifacts to code.
  4. Support: a mature framework usually can give you better support from user community.
  5. Cost: who wants to pay more?
share|improve this answer

If you want use ajax, you will prefer JSF with iceFace or Myfaces framework...

If not and if you want to get quickly your webapp, try Struts2 more simple...

share|improve this answer
7  
You can use Ajax easily across any framework or language. There is no compelling reason to pick JSF over Struts2 for Ajax. – Steven Benitez Jan 18 '11 at 23:19
Ajax is just another HTTP request. Please be specific what kind of ajax are easy to write using JSF. Struts2 has SMD support. Struts2 also has struts2-jquery plugin which can create all the jqueryui related component. On client side ajax is a bit complicated but with jquery becomes dead easy. – samarjit samanta May 2 at 2:23

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