Struts Interview questions for freshers as well 1 to 3 year experienced on advance and basic Struts with examples that cover the essentials of Struts means all type of Struts questions covered under this page and also a form is given at the end of this page for those user who want more Interview questions and answer on Struts 2 just need to fill the form and send us we will send all the answers to them and it for both freshers and experienced condidate and also chat option is given in right hand side for directly chat with for answers
Questions : 1 | What’s MVC pattern ? |
Answers : 1 |
The main purpose of using MVC pattern is to decouple the GUI from the Data. It also gives the ability to provide multiple views for the same Data. MVC pattern separates objects into three important sections:-
Model: - This section is specially for maintaining data. It is actually where your business
logic, querying database, database connection etc. is actually implemented. |
Questions : 2 | Define struts? |
Answers : 2 |
Struts are an open source framework for developing JAVA web applications. It extends Java Servlets API and helps developers to adopt MVC architecture. MVC pattern is good but developing the same can be real pain. Using struts it’s a breeze to implement MVC in projects. Struts provide a standard way of implementing MVC. |
Questions : 3 | Can you explain the directory structure for a struts folder in brief ? |
Answers : 3 |
Below are the folders from point of view of root folder. |
Questions : 4 | Can you give an overview of how a struts application flows ? |
Answers : 4 |
just to summarize how the execution flows in the struts application. |