SlideShare a Scribd company logo
1 of 34
Struts Agenda
 Software Crises
 What is Framework
 Model1,Model2
 What is Struts
 Why we need it
 Why is it called as
Struts
 Advantages of
Struts
 Controller
Elements & it’s
Responsibilities
 Model Elements &
it’s
Responsibilities
 View Elements &
it’s

Challenges Exist In Software
Development &
Software Crisis
* Time shown with out day light savings
 Projects must be developed
Quickly.
 Projects must be in High-Quality.
 Application Stability.
 Better code Maintainability.
 Lower Cost for Developing
Application.
What is Framework
 A software framework is a re-usable
design for a software system (or
subsystem).
 A framework is a pre-built assembly
of components and is designed to
be extended.
 It is also base for components.
Advantages of Framework
 Provide a procedure for the
development of Application.
 Saves developers Time.
 Provides same approach for all
developers for developing code and
Consistency in Software Design
 Provide low-level services that
developers can use to speedup
development.
 It also reduces software development
and maintenance costs.
Model 1
 In the Model 1 the
JSP page is
responsible for
processing the
incoming request
and replying back to
the client.
Disadvantages of Model1
 It does not have
separate
controller
 This Architecture
usually leads to a
significant
amount of Java
code embedded
within the JSP
page
 Model 1
Developers Designers
JSP
 Developers and designers
must work on the same files!
Model 2
 This Model2 approach
combines the use of
both servlets and JSP,
using JSP to generate
the presentation layer
and servlets to perform
process-intensive tasks.
 Model2 architecture
introduces a Servlet
between the
browser and the
JSP pages.
Model2 Advantages
 No processing/business logic within
the JSP page.
 Model 2 applications are easier to
maintain and extend, because views
do not refer to each other directly.
 The Model 2 controller servlet
provides a single point of control for
security and often encapsulates
incoming data into a form usable by
the back-end MVC model.
 It also Provides unique responsibility
to each component and each is
Model 2 Components and
Responsibilities  Model
 The Model portion of an
MVC-based System
responsible for internal
state of the system, and
actions that can be taken
to change that state
 Decide “How to do”
Controller
 -Decide “What to do”
 -The Controller portion of
the application is focused
on receiving requests
from the client ,deciding
what business logic is to
be performed ,and then
delegating responsibility
for producing the next
phase of user interface to
an appropriate View
What is Struts
 An open source web application
framework based on j2ee and java
which implements the MVC design
pattern is called Struts.
Why is it called as Struts
Strut synonym is Iron-rod.
Why we use and what are the
advantages of Struts
 It is open source.
 Provides components for building
Web Applications that speedup
development and saves time for
developers.
 It makes complex applications into
simple.
 Built in Exception Handling
 I18n support with resource bundles.
 Built in validation framework.
Struts Architecture
Struts Framework
Components
 Controller Components - Direct the
Action
 Model Components - Access
Data and
Systems
 View Components - What the
users see
Struts Controller Components
Struts-config.xml
Actionservlet and
Requestprocessor
 Receive the
HttpServletRequest
 Automatically
populate a
JavaBean from the
request
parameters.
 Handle Locale
Issues
 Determine which
 Extends
javax.servlet.http.HttpSe
rvlet
 Receives all framework
requests
 Selects proper
application module
 Delegates request
handling to the
RequestProcessor
instance
 One ActionServlet
Actionservlet and
Requestprocessor
 ActionServlet dispatch request to Request
Processor(New from 1.1. previous this
behaviour was in Action servlet)
 The work of Request Processor is:-
 Finding ActionMapping.
 Mapping Action to FormBean.
 Creating FormBean Object.
 Calling reset() method of FormBean
 Calling Validator of FormBean
 If no form(jsp/html) validation errors calls execute
method in Action Class and finding response to
request.
What is An Action Class
 Extends
org.apache.struts.action.Actio
n
 Overrides the execute() method
 Acts as a bridge between user-
invoked URI and a business
method
 Return information about which
Struts-Config.xml
 The power and
flexibility of struts is
due to the extracting
of configuration
information from
across frame work.
 Configuration file
contains action
mappings
(determines
navigation)
 Controller uses
mappings to turn
 Tags in this file
are:-
 Data Sources.
 Form Beans.
 Global Exceptions.
 Global Forwards
 Actions
 Controller
 Message resources
 Plug-in
Struts-Config.xml
The Model Components Model Components
 Java classes
 middle tier components
(EJB, Javabeans, …)
 database access
components
Used to represent the
Internal state of the
system
 Actions that can
change that state
 Internal state of system
represented by
 JavaBeans
Action Form Extends the ActionForm class
 Create one for each input form in the application
 It is just like a java bean, Store data temporary,
reset default values to views, validate input view.
 Hold state and behavior for user input.
 If defined in the ActionMapping configuration
file, the Controller Servlet will perform the
following:-
 Check for instance of bean of appropriate class
 If no bean exists, one is created automatically
 For every request parameter whose name corresponds
to the name of a property in the bean, the
corresponding setter method will be called
 The updated ActionForm bean will be passed to the
Action Class execute() method when it is called,
making these values immediately available.
ActionForm Example
The View Components
Struts JSP Tag Libraries
 HTML
 Bean
 Logic
 Nested
 Tiles
 Template
Html Tag & Bean Tag Libraries
 Tags used to
create Struts
input forms
 Examples
(checkbox,image,
link, submit ,text,
text area)
 Tags used for
accessing
JavaBeans and
their properties
 Examples
(Define,message,
write)
Logic ,Tiles & Nested Tag
Libraries
 Managing
conditional
generation of
output text
 Looping over
object Collections
for repetitive
generation of
output text
 Example
(empty,lessThan,
greaterThan)
 Extended the base
struts tags to allow
them to relate to
each other in
nested nature
 Tiles tags
Each part ("Tile")
of webpage can be
reused as often as
needed throughout
your application.
This reduces the
amount of markup
Template Tag Library
 The "struts-template" tag library
contains tags that are useful in
creating dynamic JSP templates for
pages which share a common format.
These templates are best used when it
is likely that a layout shared by
several pages in your application will
change. The functionality provided by
these tags is similar to what can be
achieved using standard JSP include
Action Message & Action Error
 Used to signify general purpose
informational and error messages
 Rely on the resource bundles
 JSP Tags can access them
 </html:errors>
Internationalization Support
 Much of the
framework
functionality
based on
java.util.Locale
 Struts Uses Java
Resource
Bundles.
 Ex:-
 Date ,Time and
Currency
Other Features Suported by
Struts Framework
 Multi-Module Support
 Declarative Exception-Handling
 Dynamic Action Forms
 Plugins
 Tiles integrated With Core
 Validator Integrated With Core
Struts Sequence Diagram
Struts Example 10.167.192.116l
ogin_app
 Webapps|
 |
sample(Application Name)
 |__ login.jsp

|__newLogin.Jsp

|__success.jsp
 |__WEB-INF

|__web.xml

|__Struts-config.xml

|__*.tldAll the struts
tld files
 |__lib
 |__*.jarAll the jar
files
 |
__classes
 |__LoginAction,LoginForm,
Disadvantages
 Bigger Learning Curve
 Not Based on Domain Model
 Property Names
 Views are restricted.
Questions & Answers
Thank u

More Related Content

What's hot

What's hot (20)

Mobile Application Development MAD J2ME UNIT 2
Mobile Application Development  MAD J2ME UNIT 2Mobile Application Development  MAD J2ME UNIT 2
Mobile Application Development MAD J2ME UNIT 2
 
Packages in PL/SQL
Packages in PL/SQLPackages in PL/SQL
Packages in PL/SQL
 
Java Collections
Java  Collections Java  Collections
Java Collections
 
Solid Principles
Solid PrinciplesSolid Principles
Solid Principles
 
Uml
UmlUml
Uml
 
Input Validation
Input ValidationInput Validation
Input Validation
 
Unified modelling language (UML)
Unified modelling language (UML)Unified modelling language (UML)
Unified modelling language (UML)
 
WHAT IS ABSTRACTION IN JAVA
WHAT IS ABSTRACTION IN JAVAWHAT IS ABSTRACTION IN JAVA
WHAT IS ABSTRACTION IN JAVA
 
Cookies in servlet
Cookies in servletCookies in servlet
Cookies in servlet
 
Selenium
SeleniumSelenium
Selenium
 
Sql queries presentation
Sql queries presentationSql queries presentation
Sql queries presentation
 
JPA and Hibernate
JPA and HibernateJPA and Hibernate
JPA and Hibernate
 
Java Design Patterns Tutorial | Edureka
Java Design Patterns Tutorial | EdurekaJava Design Patterns Tutorial | Edureka
Java Design Patterns Tutorial | Edureka
 
Packages - PL/SQL
Packages - PL/SQLPackages - PL/SQL
Packages - PL/SQL
 
Chapter20 object oriented analysis and design
Chapter20 object oriented analysis and designChapter20 object oriented analysis and design
Chapter20 object oriented analysis and design
 
Introduction to OOAD
Introduction to OOADIntroduction to OOAD
Introduction to OOAD
 
Visual Basic menu
Visual Basic menuVisual Basic menu
Visual Basic menu
 
Java Basic Oops Concept
Java Basic Oops ConceptJava Basic Oops Concept
Java Basic Oops Concept
 
Introduction to Java -unit-1
Introduction to Java -unit-1Introduction to Java -unit-1
Introduction to Java -unit-1
 
Adapter pattern
Adapter patternAdapter pattern
Adapter pattern
 

Similar to Struts Ppt 1

Introduction to ejb and struts framework
Introduction to ejb and struts frameworkIntroduction to ejb and struts framework
Introduction to ejb and struts frameworks4al_com
 
Krazykoder struts2 intro
Krazykoder struts2 introKrazykoder struts2 intro
Krazykoder struts2 introKrazy Koder
 
Struts Interview Questions
Struts Interview QuestionsStruts Interview Questions
Struts Interview Questionsjbashask
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overviewskill-guru
 
important struts interview questions
important struts interview questionsimportant struts interview questions
important struts interview questionssurendray
 
J2EE PPT --CINTHIYA.M Krishnammal college for women
J2EE PPT --CINTHIYA.M Krishnammal college for womenJ2EE PPT --CINTHIYA.M Krishnammal college for women
J2EE PPT --CINTHIYA.M Krishnammal college for womenlissa cidhi
 
Apachecon 2002 Struts
Apachecon 2002 StrutsApachecon 2002 Struts
Apachecon 2002 Strutsyesprakash
 
D22 Portlet Development With Open Source Frameworks
D22 Portlet Development With Open Source FrameworksD22 Portlet Development With Open Source Frameworks
D22 Portlet Development With Open Source FrameworksSunil Patil
 
D22 portlet development with open source frameworks
D22 portlet development with open source frameworksD22 portlet development with open source frameworks
D22 portlet development with open source frameworksSunil Patil
 
Exploiting Web Technologies to connect business process management and engine...
Exploiting Web Technologies to connect business process management and engine...Exploiting Web Technologies to connect business process management and engine...
Exploiting Web Technologies to connect business process management and engine...Stefano Costanzo
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2divzi1913
 

Similar to Struts Ppt 1 (20)

Struts ppt 1
Struts ppt 1Struts ppt 1
Struts ppt 1
 
Introduction to ejb and struts framework
Introduction to ejb and struts frameworkIntroduction to ejb and struts framework
Introduction to ejb and struts framework
 
Struts N E W
Struts N E WStruts N E W
Struts N E W
 
Struts
StrutsStruts
Struts
 
Struts
StrutsStruts
Struts
 
MVC
MVCMVC
MVC
 
Krazykoder struts2 intro
Krazykoder struts2 introKrazykoder struts2 intro
Krazykoder struts2 intro
 
Struts Interview Questions
Struts Interview QuestionsStruts Interview Questions
Struts Interview Questions
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overview
 
important struts interview questions
important struts interview questionsimportant struts interview questions
important struts interview questions
 
J2EE PPT --CINTHIYA.M Krishnammal college for women
J2EE PPT --CINTHIYA.M Krishnammal college for womenJ2EE PPT --CINTHIYA.M Krishnammal college for women
J2EE PPT --CINTHIYA.M Krishnammal college for women
 
Struts 1
Struts 1Struts 1
Struts 1
 
Struts course material
Struts course materialStruts course material
Struts course material
 
Apachecon 2002 Struts
Apachecon 2002 StrutsApachecon 2002 Struts
Apachecon 2002 Struts
 
Skillwise Struts.x
Skillwise Struts.xSkillwise Struts.x
Skillwise Struts.x
 
D22 Portlet Development With Open Source Frameworks
D22 Portlet Development With Open Source FrameworksD22 Portlet Development With Open Source Frameworks
D22 Portlet Development With Open Source Frameworks
 
D22 portlet development with open source frameworks
D22 portlet development with open source frameworksD22 portlet development with open source frameworks
D22 portlet development with open source frameworks
 
Exploiting Web Technologies to connect business process management and engine...
Exploiting Web Technologies to connect business process management and engine...Exploiting Web Technologies to connect business process management and engine...
Exploiting Web Technologies to connect business process management and engine...
 
Ibm
IbmIbm
Ibm
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2
 

Recently uploaded

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 

Struts Ppt 1

  • 1.
  • 2. Struts Agenda  Software Crises  What is Framework  Model1,Model2  What is Struts  Why we need it  Why is it called as Struts  Advantages of Struts  Controller Elements & it’s Responsibilities  Model Elements & it’s Responsibilities  View Elements & it’s 
  • 3. Challenges Exist In Software Development & Software Crisis * Time shown with out day light savings  Projects must be developed Quickly.  Projects must be in High-Quality.  Application Stability.  Better code Maintainability.  Lower Cost for Developing Application.
  • 4. What is Framework  A software framework is a re-usable design for a software system (or subsystem).  A framework is a pre-built assembly of components and is designed to be extended.  It is also base for components.
  • 5. Advantages of Framework  Provide a procedure for the development of Application.  Saves developers Time.  Provides same approach for all developers for developing code and Consistency in Software Design  Provide low-level services that developers can use to speedup development.  It also reduces software development and maintenance costs.
  • 6. Model 1  In the Model 1 the JSP page is responsible for processing the incoming request and replying back to the client.
  • 7. Disadvantages of Model1  It does not have separate controller  This Architecture usually leads to a significant amount of Java code embedded within the JSP page  Model 1 Developers Designers JSP  Developers and designers must work on the same files!
  • 8. Model 2  This Model2 approach combines the use of both servlets and JSP, using JSP to generate the presentation layer and servlets to perform process-intensive tasks.  Model2 architecture introduces a Servlet between the browser and the JSP pages.
  • 9. Model2 Advantages  No processing/business logic within the JSP page.  Model 2 applications are easier to maintain and extend, because views do not refer to each other directly.  The Model 2 controller servlet provides a single point of control for security and often encapsulates incoming data into a form usable by the back-end MVC model.  It also Provides unique responsibility to each component and each is
  • 10. Model 2 Components and Responsibilities  Model  The Model portion of an MVC-based System responsible for internal state of the system, and actions that can be taken to change that state  Decide “How to do” Controller  -Decide “What to do”  -The Controller portion of the application is focused on receiving requests from the client ,deciding what business logic is to be performed ,and then delegating responsibility for producing the next phase of user interface to an appropriate View
  • 11. What is Struts  An open source web application framework based on j2ee and java which implements the MVC design pattern is called Struts. Why is it called as Struts Strut synonym is Iron-rod.
  • 12. Why we use and what are the advantages of Struts  It is open source.  Provides components for building Web Applications that speedup development and saves time for developers.  It makes complex applications into simple.  Built in Exception Handling  I18n support with resource bundles.  Built in validation framework.
  • 14. Struts Framework Components  Controller Components - Direct the Action  Model Components - Access Data and Systems  View Components - What the users see
  • 16. Actionservlet and Requestprocessor  Receive the HttpServletRequest  Automatically populate a JavaBean from the request parameters.  Handle Locale Issues  Determine which  Extends javax.servlet.http.HttpSe rvlet  Receives all framework requests  Selects proper application module  Delegates request handling to the RequestProcessor instance  One ActionServlet
  • 17. Actionservlet and Requestprocessor  ActionServlet dispatch request to Request Processor(New from 1.1. previous this behaviour was in Action servlet)  The work of Request Processor is:-  Finding ActionMapping.  Mapping Action to FormBean.  Creating FormBean Object.  Calling reset() method of FormBean  Calling Validator of FormBean  If no form(jsp/html) validation errors calls execute method in Action Class and finding response to request.
  • 18. What is An Action Class  Extends org.apache.struts.action.Actio n  Overrides the execute() method  Acts as a bridge between user- invoked URI and a business method  Return information about which
  • 19. Struts-Config.xml  The power and flexibility of struts is due to the extracting of configuration information from across frame work.  Configuration file contains action mappings (determines navigation)  Controller uses mappings to turn  Tags in this file are:-  Data Sources.  Form Beans.  Global Exceptions.  Global Forwards  Actions  Controller  Message resources  Plug-in Struts-Config.xml
  • 20. The Model Components Model Components  Java classes  middle tier components (EJB, Javabeans, …)  database access components Used to represent the Internal state of the system  Actions that can change that state  Internal state of system represented by  JavaBeans
  • 21. Action Form Extends the ActionForm class  Create one for each input form in the application  It is just like a java bean, Store data temporary, reset default values to views, validate input view.  Hold state and behavior for user input.  If defined in the ActionMapping configuration file, the Controller Servlet will perform the following:-  Check for instance of bean of appropriate class  If no bean exists, one is created automatically  For every request parameter whose name corresponds to the name of a property in the bean, the corresponding setter method will be called  The updated ActionForm bean will be passed to the Action Class execute() method when it is called, making these values immediately available. ActionForm Example
  • 23. Struts JSP Tag Libraries  HTML  Bean  Logic  Nested  Tiles  Template
  • 24. Html Tag & Bean Tag Libraries  Tags used to create Struts input forms  Examples (checkbox,image, link, submit ,text, text area)  Tags used for accessing JavaBeans and their properties  Examples (Define,message, write)
  • 25. Logic ,Tiles & Nested Tag Libraries  Managing conditional generation of output text  Looping over object Collections for repetitive generation of output text  Example (empty,lessThan, greaterThan)  Extended the base struts tags to allow them to relate to each other in nested nature  Tiles tags Each part ("Tile") of webpage can be reused as often as needed throughout your application. This reduces the amount of markup
  • 26. Template Tag Library  The "struts-template" tag library contains tags that are useful in creating dynamic JSP templates for pages which share a common format. These templates are best used when it is likely that a layout shared by several pages in your application will change. The functionality provided by these tags is similar to what can be achieved using standard JSP include
  • 27. Action Message & Action Error  Used to signify general purpose informational and error messages  Rely on the resource bundles  JSP Tags can access them  </html:errors>
  • 28. Internationalization Support  Much of the framework functionality based on java.util.Locale  Struts Uses Java Resource Bundles.  Ex:-  Date ,Time and Currency
  • 29. Other Features Suported by Struts Framework  Multi-Module Support  Declarative Exception-Handling  Dynamic Action Forms  Plugins  Tiles integrated With Core  Validator Integrated With Core
  • 31. Struts Example 10.167.192.116l ogin_app  Webapps|  | sample(Application Name)  |__ login.jsp  |__newLogin.Jsp  |__success.jsp  |__WEB-INF  |__web.xml  |__Struts-config.xml  |__*.tldAll the struts tld files  |__lib  |__*.jarAll the jar files  | __classes  |__LoginAction,LoginForm,
  • 32. Disadvantages  Bigger Learning Curve  Not Based on Domain Model  Property Names  Views are restricted.

Editor's Notes

  1. Frame work Provides Core Services A framework is designed to offer a large number of related services centered on a broad theme. It is also base for components Ex:-car
  2. 1.A Model 1 application control is decentralized, because the current page being displayed determines the next page to display 2. Architecture usually leads to a significant amount of Java code embedded within the JSP page While this may not seem to be much of a problem for Java developers, it is certainly an issue if your JSP pages are created and maintained by designers
  3. This approach typically results in the cleanest separation of presentation from content, leading to clear delineation of the roles and responsibilities of the developers and page designers.
  4. When building physical structures Construction Engineers use support for each floor of building .Likewise, Software engineers also use some frame work to support each layer of their Applications. That why we call it as Struts.
  5. WebDAV was a working group of the Internet Engineering Task Force .The name is an abbreviation for Web-based Distributed Authoring and Versioning and also refers to the set of extensions to the Hypertext Transfer Protocol (HTTP) that the group defined which allows users to collaboratively edit and manage files on remote World Wide Web servers
  6. System State Beans Actual state of a system is normally represented as a set of one or more JavaBeans classes, whose properties define the current state. For small to medium sized applications, business logic beans might be ordinary JavaBeans that interact with system state beans passed as arguments, or ordinary JavaBeans that access a database using JDBC calls For larger applications, these beans will often be stateful or stateless Enterprise JavaBeans (EJBs).