Can we have different controllers in one struts app?
Answers were Sorted based on User's Feedback
Answer / rajesh r
NO!
Struts Framework is based on Front Controller design
patter ehich means there should be only ONE Controller
(ACTION SERVLET) to controller the request and dispatching
the views or resopnses.
Is This Answer Correct ? | 31 Yes | 1 No |
Answer / kalyan
No,there is only one Controller(Action Servlet) in struts
application.Controller is receive the request from client
(browser) and manage the work flow of entire application
and finally view the response to client.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / brijendra kumar , xavient soft
No, struts having only one controller which handle action
servlet means receive Http request or user input and
provide http responseor user out put.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / swami
yes we can able to define multiple controllers in web.xml but all of doing same work so some times we got inconsistency data problem in struts so we are using only one centralized controller in struts
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / qim2010
We can’t have different controllers in one struts
application as Struts Framework is based on Front Controller
design pattern. The Front Controller suggests that we only
have one Servlet (instead of having specific Servlet for
each specific request) centralizing the handling of all the
requests and delegating the functions like validation,
invoking business services etc to a command or a helper
component.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / suresh. s.a.
No, Only one controller in a struts application, v can have
many action class in one controller.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sasi
yes we can have multiple controllers for a single struts application but the maintaining data Form Bean is problem
Is This Answer Correct ? | 0 Yes | 1 No |
What are the differences between Struts1 and Struts2 or how Struts2 is better than Struts1?
Explain about the process of functioning of the struts program?
What does params interceptor?
Give the details of xml files used in validator framework?
How duplicate form submission can be controlled in struts?
What is life cycle of an interceptor?
What is interceptor? And life cycle methods of interceptor?
Can you explain aware interfaces in struts2?
What is actionform in struts?
At the point, you should go for struts framework?
What are the sections into which a strut configuration file can be divided?
What are Struts properties?