why struts framework is designed, how struts framework is design, what is struts framework in java, how framework is designed in java, what is struts framework, Definition of Struts Framework
Struts Provides abstraction layer on core technologies like Servlet, Jsp and also uses them to generate Integration logic of Controller layer Dynamically.
According to the MVC architecture Struts Framework is designed. MVC represents Model, View and Controller Layers. By using MVC architecture makes Struts Framework more dynamic.
In Java there are two MVC architectures. MVC 1 Architecture and MVC 2 Architecture. While developing the Dynamic web applications using Frameworks, MVC 2 is Best Architecture to develop without violation any rules and guidelines.
By using Core Technologies JSP, Servlet Manually to Struts framework Using MVC 2
- Develop View Layer logics (Presentation Layer Using Jsp).
- Develop Controller Layer Logic (Integration Logic)
- Develop Model layer Logic( Business Logic, Persistence Logic)
- Implement MVC 2 Principles manually.
- Create all necessary Objects Manually.
- Develop all the resources manually.
When MVC 2 web application is developed without using web framework software and directly by using core technologies then developer need to develop both common logics and application specific logics of all the layers manually, it takes time and burden on developer.
Struts Framework Design Using MVC 2 Architecture
- Develop view layers logics
- Develop Model Layer logics.
- Configure View and Model Layer resources in the Configuration file like XML.
No comments:
Post a Comment