what is the main reason for developing struts? what is
advantages over Basic MVC architecture based JAVA Application?
Answer / sanjit sinha
struts is a web framework, we can develop any small and
large web based application.
actually struts web framework is based on two design pattern
1> MVC design pattern
2>front controller design pattern
MVC design pattern has divide in three layer
model, view , and controller
...in first layer is view where we write all the jsp or html
file it is also called presentation layer.
...second layer is controller layer where we write the
action servlet, request processor and action.
....third layer is model layer where we use the
hibernate,jdbc or ejb.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the purpose of @intrangefieldvalidator annotation?
How does struts work?
What is interceptor struts2?
what is request processor class ?
What is the default suffix for Struts2 action URI and how can we change it?
What are the bundled validators?
What configuration changes are required to use resource files in Struts?
What is the difference between session scope and request scope when saving formbean ?
What is struts2 in java?
What does params interceptor?
What is the default location of result pages and how can we change it?
Can we have multiple struts-config files in a single web app? If yes why should we have them? Will multiple copies make any impact on performance?