I am just starting with web application. Which framework should I try : struts 2 jsf? Both seem pretty good.
|
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.
|
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. |
|||||||||||
|
|
there exists also good ajax solutions for struts2 so this is not a reason for JSF. |
|||
|
|
|
JSF is a standard Java EE 6 technology, Struts isn't. |
|||||||||||||
|
|
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. |
||||
|
|
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. |
|||
|
|
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:
|
|||
|
|
|
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... |
|||||||
|