SlideShare una empresa de Scribd logo
1 de 55
Descargar para leer sin conexión
An Introduction to
Building Web Application Using
   Jakarta Struts Framework
   Presented to Indianapolis Java User Group

                   10/30/2002

                     Wei Li
Challenge from Building Web
          Applications
• Stateless protocol
• Multiple tiers
• …
Building Web Application with
      Java - Why it is good
• Build once, run everywhere (platform-
  independent, vendor-independent)
• Build it in an object-oriented way
• Reusable components
• Flexible and easy to be maintained and extended
Building Web Application with
         Java - choices
• Pure Java Servlets (control + presentation)
• Java Servlets (control) + template engine
  (presentation) (Velocity, WebMacro, Tea)
• Java Servlets (control) + XML and XSLT
  (presentation)
• JSP (presentation + control) + Java Beans
  (control+model) (Model 1)
• JSP(presentation) + Java Servlets (control)+ Java
  Beans (model) (Model 2)
Problems with Pure Java
             Servlets - sample code
 public void printHTMLReport(PrintWriter out, Results results) {
  println(out, "<b>Poll:</b> " + poll.getId() + "<br>");
  println(out, "<b>Question:</b> " + poll.getQuestion() + "<br>");
  out.print("<b>Candidates:</b> ");
  this.printCandidates(out);
  println(out, "<br>");
  println(out, "<br>");
  println(out, "<b>The winner is...</b> " + results.getWinner() + "!<br>");
  println(out, "<br><br>");
  println(out, "Round-by-round summary:<br><br>");
…
…
}
Problems with Pure Java
              Servlets
• Servlets have to take care of presentation - which
  is not a good thing for it to do
• HTML tags in the Java code
• Hard to maintain and extend (every content
  change requires the compilation of Java classes)
• Frustration of Java developers who are good at
  writing Java code but not HTML
Problems with JSPs + Java Beans
          (Model 1)
No controller - each page is responsible to direct control to the
  next page.




      request

                   JSP             Java               EIS
      response
                                   Beans
Problems with JSPs + Java Beans
          (Model 1)
• Java code in HTML tags
• Hard to maintain and change also
• Frustration of content developer
MVC and Model II
• Aim to separate the flow control, business logic
  and presentation
MVC and Model II
• Model - this is you data in the system. Such as a poll, the
  profile of a poll administrator.
• View - how data is represented to the user. For instance
  the view in a web application could be an HTML page, an
  image or other media.
• Controller - is the glue between the model and the view.
  It is responsible for controlling the flow as well as
  processing updates from the model to the view and visa
  versa
MVC and Model II
• Model II - uses a controller

                                      Web container
   1. request
                Controller
                                 2


                      3              Model            EIS
                             4
5. response
                 View
MVC and Model II

• Controller - Java servelts
• Model - Java Beans (domain objects, value
  objects)
• View - JSP, XML + XSLT ….
MVC and Model II

•   Many implementations available for choice
•   Expresso
•   Barracuda
•   Cocoon
•   WebWork
•   Velocity, Tea, WebMacro
•   ….
MVC and Model II

• And of course, you can build your own
• But, Why? Regardless how you implement, you
  probably will end up with something similar or
  close to Struts.
Break 1

A good scientist is a person with original ideas. A
  good engineer is a person who makes a design that
  works with as few original ideas as possible.

                             --- Freeman Dyson
Jakarta Struts - What is it?
• A flexible control layer based on standard technologies
  like Java Servlets, JavaBeans, ResourceBundles, and
  Extensible Markup Language (XML).
• An implementation of MVC Model II
• A standardized and extensible web application
  design/implementation framework
Jakarta Struts - General Info
• Craig McClanahan created the original framework and
  donated it to Apache Software Foundation (ASF) in 2000.
• Current stable release - 1.0.2.
• 1.1 is in beta release.
• The framework provides 9 package with 250 classes
Jakarta Struts - Features
• An Model II implementation of MVC
• Big base packages and classes ready to use
• Rich Custom Tag Libraries ready to use
• Easy support for internationalization (I18N)
Jakarta Struts - the whole picture
                                       configuration     configuration
                                     Struts-config.xml
 request    ActionServlet            Message Bundle

                        Controller
           action
               action
                    action
                                                            EIS
                                          Model

response         View
                                        Java Beans,
           JSP, Tag Library
                                        EJB, ...
           ….
Jakarta Struts - the controller

• ActionServlet - Responsible for flow of control - 1.
  receive all requests, 2. route/delegate request to Action for
  handling, 3. return response
• One instance per web application
• Uses a configuration file called struts-config.xml to read
  mapping data, which specify control flow information
• Provided by the framework already. Ready to use but can
  also be extended
Jakarta Struts - the controller
• Action - the actual class which processes the
  request relevant to the business operation. Based
  on action mappings defined in an XML
  configuration file, the controller dispatches a call
  to the perform method of the appropriate Action
  Class.
• Command pattern
• Framework provides some actions. You need to
  implement you own action class for business
  purpose.
Jakarta Struts - the model

• You are responsible for creating it - Java Bean,
  EJB, etc.
• Should be reusable domain objects and value
  objects to represent a state.
• The framework works fine with any model
  implementation.
Jakarta Struts - the view

• JSP
• Custom Tag Library
• Resource Bundle
Jakarta Struts - the view

• Struts provides rich custom tag library to
  dramatically reduce Java code in your jsp.

• Example: HTML, BEAN, LOGIC,
  TEMPLATES,…

• We will see how handy they are in the case study
Jakarta Struts - the others

• ActionForm - encapsulate request/session data,
  typically used for input forms, provides a central
  point to validate form data.
Jakarta Struts - the others

• ActionMessage and ActionError
Jakarta Struts - the configuration

• Glue the system together
• web.xml and struts-config.xml
Jakarta Struts - the configuration

• Web.xml:
  o define the controller servlet (ActionServlet)with initial parameters;
  o define URL mapping to be handled by the controller servlet;
  o define the Struts tag libraries.
Jakarta Struts - the configuration

• struts-config.xml
   o Glue all components together and set the rules for the
     application
   o Data Source Configuration
   o Form Bean Definitions
   o Action Mapping Definitions
   o Global Forward Definitions
Break 2
A manager, an engineer, and a developer are going down a
  hill in a jeep when it suddenly loses control and goes into a
  ditch. They each attempt to offer a solution to the problem.
  The manager says 'Let's have a meeting to discuss a
  solution'. The engineer says 'Let's disassemble the jeep,
  and examine every part to find out where the problem is.'
  The developer says, 'Let's push it back up the hill and try
  again.

         http://www.middleware-company.com/offer/patternsday1/article4.shtml
Case Study:
          An Online Instant Poll
• Introduction - When I was having a hard time to define an
  appropriate application to really have my hands wet with
  Struts, I spotted Alex Chaffee’s JiffyPoll
  (http://www.purpletech.com/irv/index.html). I like his
  idea but not all his implementation. Then I began to apply
  the struts framework to it and extends its functionality …
Case Study:
         An Online Instant Poll
• What does it do?
   o As a normal user - you can select and vote a poll, you
     can view the results of any poll, you can also see the
     information about a poll.
   o As an administrator - you can create a new poll right
     away. You can also disable/enable a poll owned by you.
Case Study:
         An Online Instant Poll
• What does it do - Let us try it.
Case Study:
                 An Online Instant Poll
                                                                        Flat text file
            Web container                                              as persistence
                                 Service interface
                                                                           media
  request                                   PlainTextFilePollService
             controller     Service            DatabasePollService
                            factory                                      Relational
                                                 EJBPollService          Database


response
                view                     model                         EJB Container
Case Study:
         An Online Instant Poll
• Benefits of the design
   o The real business logic is de-coupled from the
     controller, the model and the view
   o Increase of the reusability of the components - the
     service is completely reusable, the model (domain
     object and value object) is fully reusable also.
Case Study:
         An Online Instant Poll
• The controller - directly use ActionServlet
  provided by the framework

• The action classes - delegate to service provider
  which does the real work.
Case Study:
        An Online Instant Poll
• The real business logic - de-coupled from the
  framework and stands as a independent/reusable
  component
Case Study:
        An Online Instant Poll
• The Model - reusable Java Beans, domain objects
  and value objects.
Case Study:
        An Online Instant Poll
• The view - use the data provided in the model
• Rich use of tag library provide by the framework

• Show some sample JSPs and includes

• Almost no Java code in JSPs
Case Study:
         An Online Instant Poll
• Internationalization - easy to be implemented like
  a breeze

• Demo
Jakarta Struts - Why it is good

• Promote clean separation of components
Jakarta Struts - Why it is good

• Increase the modularity, reusability of components
Jakarta Struts - Why it is good

• Focus on design
Jakarta Struts - Why it is good

• Very use case driven
Jakarta Struts - Why it is good

• What you need to do is clear
• You can really focus on the real work - the
  business logic
Jakarta Struts - Why it is good

• Easy internationalization
Jakarta Struts - Why it is good

•   Free
•   Open Source
•   Implemented by savvy developer/expert
•   large user community
New features in 1.1 - what makes
            it better
• Declarative exception handling
<action path="/login"
        type="net.indyjug.weili.struts.security.LoginAction"
        name="loginForm"
        scope="request"
        validate="true"
        input="/jsp/login.jsp">
        <exception
             key="error.invalidlogin"
             path=”/jsp/login.jsp"
             scope="request"
             type=”net.indyjug.weili.struts.exception.InvalidLoginException"/>
        <forward name="success" path="/jsp/administration.jsp" />
        <forward name="failure" path="/jsp/login.jsp" />
 </action>
New features in 1.1 - what makes
            it better
• Dynamic Form Bean
New features in 1.1 - what makes
            it better
• Plug-in
New features in 1.1 - what makes
            it better
• Tiles
The learning curve

• Not so easy for the first time. After that life is
  easy.
• Manageable
• Custom tag library may make mad at the
  beginning. Do not quit. They are so handy once
  you know how to use them.
Fast Track:
              Getting Started
• What you need
  o JDK 1.2 and above
  o Web Contained compliant with Servlet API 2.2 and JSP
    API 1.1
  o An XML parser compliant with JAXP 1.1 or above
    (this is usually provided by the web container)
Fast Track:
             Getting Started
• The framework provides an application template
  for you to use and extend
• Always continue on top of something which is
  working.
• Build the whole structure first and leave the
  concrete implementation later on (example)
Question?

Más contenido relacionado

La actualidad más candente

SeaJUG May 2012 mybatis
SeaJUG May 2012 mybatisSeaJUG May 2012 mybatis
SeaJUG May 2012 mybatisWill Iverson
 
CDI Best Practices with Real-Life Examples - TUT3287
CDI Best Practices with Real-Life Examples - TUT3287CDI Best Practices with Real-Life Examples - TUT3287
CDI Best Practices with Real-Life Examples - TUT3287Ahmad Gohar
 
The Grid the Brad and the Ugly: Using Grids to Improve Your Applications
The Grid the Brad and the Ugly: Using Grids to Improve Your ApplicationsThe Grid the Brad and the Ugly: Using Grids to Improve Your Applications
The Grid the Brad and the Ugly: Using Grids to Improve Your Applicationsbalassaitis
 
Hibernate example1
Hibernate example1Hibernate example1
Hibernate example1myrajendra
 
7장 Oracle As Datasource
7장 Oracle As Datasource7장 Oracle As Datasource
7장 Oracle As Datasource김 한도
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2Long Nguyen
 
Action-Domain-Responder: A Web-Specific Refinement of Model-View-Controller
Action-Domain-Responder: A Web-Specific Refinement of Model-View-ControllerAction-Domain-Responder: A Web-Specific Refinement of Model-View-Controller
Action-Domain-Responder: A Web-Specific Refinement of Model-View-ControllerPaul Jones
 
2장. Runtime Data Areas
2장. Runtime Data Areas2장. Runtime Data Areas
2장. Runtime Data Areas김 한도
 
Mock Objects, Design and Dependency Inversion Principle
Mock Objects, Design and Dependency Inversion PrincipleMock Objects, Design and Dependency Inversion Principle
Mock Objects, Design and Dependency Inversion PrincipleP Heinonen
 
MWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next LevelMWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next Levelbalassaitis
 
Struts 2 - Introduction
Struts 2 - Introduction Struts 2 - Introduction
Struts 2 - Introduction Hitesh-Java
 
Java EE 8 Web Frameworks: A Look at JSF vs MVC
Java EE 8 Web Frameworks: A Look at JSF vs MVCJava EE 8 Web Frameworks: A Look at JSF vs MVC
Java EE 8 Web Frameworks: A Look at JSF vs MVCJosh Juneau
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2divzi1913
 
Spring framework
Spring frameworkSpring framework
Spring frameworkAircon Chen
 
4장. Class Loader
4장. Class Loader4장. Class Loader
4장. Class Loader김 한도
 
6장 Thread Synchronization
6장 Thread Synchronization6장 Thread Synchronization
6장 Thread Synchronization김 한도
 
5장. Execution Engine
5장. Execution Engine5장. Execution Engine
5장. Execution Engine김 한도
 

La actualidad más candente (20)

3 jdbc api
3 jdbc api3 jdbc api
3 jdbc api
 
SeaJUG May 2012 mybatis
SeaJUG May 2012 mybatisSeaJUG May 2012 mybatis
SeaJUG May 2012 mybatis
 
CDI Best Practices with Real-Life Examples - TUT3287
CDI Best Practices with Real-Life Examples - TUT3287CDI Best Practices with Real-Life Examples - TUT3287
CDI Best Practices with Real-Life Examples - TUT3287
 
Hibernate 3
Hibernate 3Hibernate 3
Hibernate 3
 
The Grid the Brad and the Ugly: Using Grids to Improve Your Applications
The Grid the Brad and the Ugly: Using Grids to Improve Your ApplicationsThe Grid the Brad and the Ugly: Using Grids to Improve Your Applications
The Grid the Brad and the Ugly: Using Grids to Improve Your Applications
 
Hibernate example1
Hibernate example1Hibernate example1
Hibernate example1
 
4 jdbc step1
4 jdbc step14 jdbc step1
4 jdbc step1
 
7장 Oracle As Datasource
7장 Oracle As Datasource7장 Oracle As Datasource
7장 Oracle As Datasource
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2
 
Action-Domain-Responder: A Web-Specific Refinement of Model-View-Controller
Action-Domain-Responder: A Web-Specific Refinement of Model-View-ControllerAction-Domain-Responder: A Web-Specific Refinement of Model-View-Controller
Action-Domain-Responder: A Web-Specific Refinement of Model-View-Controller
 
2장. Runtime Data Areas
2장. Runtime Data Areas2장. Runtime Data Areas
2장. Runtime Data Areas
 
Mock Objects, Design and Dependency Inversion Principle
Mock Objects, Design and Dependency Inversion PrincipleMock Objects, Design and Dependency Inversion Principle
Mock Objects, Design and Dependency Inversion Principle
 
MWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next LevelMWLUG 2015 - AD114 Take Your XPages Development to the Next Level
MWLUG 2015 - AD114 Take Your XPages Development to the Next Level
 
Struts 2 - Introduction
Struts 2 - Introduction Struts 2 - Introduction
Struts 2 - Introduction
 
Java EE 8 Web Frameworks: A Look at JSF vs MVC
Java EE 8 Web Frameworks: A Look at JSF vs MVCJava EE 8 Web Frameworks: A Look at JSF vs MVC
Java EE 8 Web Frameworks: A Look at JSF vs MVC
 
Struts 2-overview2
Struts 2-overview2Struts 2-overview2
Struts 2-overview2
 
Spring framework
Spring frameworkSpring framework
Spring framework
 
4장. Class Loader
4장. Class Loader4장. Class Loader
4장. Class Loader
 
6장 Thread Synchronization
6장 Thread Synchronization6장 Thread Synchronization
6장 Thread Synchronization
 
5장. Execution Engine
5장. Execution Engine5장. Execution Engine
5장. Execution Engine
 

Destacado

Struts Introduction Course
Struts Introduction CourseStruts Introduction Course
Struts Introduction Courseguest764934
 
Step by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts ApplicationStep by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts Applicationelliando dias
 
Step By Step Guide For Buidling Simple Struts App
Step By Step Guide For Buidling Simple Struts AppStep By Step Guide For Buidling Simple Struts App
Step By Step Guide For Buidling Simple Struts AppSyed Shahul
 
Struts 2 + Spring
Struts 2 + SpringStruts 2 + Spring
Struts 2 + SpringBryan Hsueh
 
A brief overview of java frameworks
A brief overview of java frameworksA brief overview of java frameworks
A brief overview of java frameworksMD Sayem Ahmed
 
Java & J2EE Struts with Hibernate Framework
Java & J2EE Struts with Hibernate FrameworkJava & J2EE Struts with Hibernate Framework
Java & J2EE Struts with Hibernate FrameworkMohit Belwal
 

Destacado (10)

Struts Introduction Course
Struts Introduction CourseStruts Introduction Course
Struts Introduction Course
 
Introduction to Struts 2
Introduction to Struts 2Introduction to Struts 2
Introduction to Struts 2
 
Frameworks in java
Frameworks in javaFrameworks in java
Frameworks in java
 
Step by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts ApplicationStep by Step Guide for building a simple Struts Application
Step by Step Guide for building a simple Struts Application
 
Struts Basics
Struts BasicsStruts Basics
Struts Basics
 
Step By Step Guide For Buidling Simple Struts App
Step By Step Guide For Buidling Simple Struts AppStep By Step Guide For Buidling Simple Struts App
Step By Step Guide For Buidling Simple Struts App
 
Struts 2 + Spring
Struts 2 + SpringStruts 2 + Spring
Struts 2 + Spring
 
A brief overview of java frameworks
A brief overview of java frameworksA brief overview of java frameworks
A brief overview of java frameworks
 
Struts Ppt 1
Struts Ppt 1Struts Ppt 1
Struts Ppt 1
 
Java & J2EE Struts with Hibernate Framework
Java & J2EE Struts with Hibernate FrameworkJava & J2EE Struts with Hibernate Framework
Java & J2EE Struts with Hibernate Framework
 

Similar a Build Java Web Application Using Apache Struts

JAVA EE training from 3rd-oct-2015
JAVA EE training from 3rd-oct-2015JAVA EE training from 3rd-oct-2015
JAVA EE training from 3rd-oct-2015Naz Ish
 
MVC + ORM (with project implementation)
MVC + ORM (with project implementation)MVC + ORM (with project implementation)
MVC + ORM (with project implementation)Prateek Chauhan
 
Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC  Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC vipin kumar
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overviewskill-guru
 
170215 msa intro
170215 msa intro170215 msa intro
170215 msa introSonic leigh
 
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
 
What is ASP.NET MVC
What is ASP.NET MVCWhat is ASP.NET MVC
What is ASP.NET MVCBrad Oyler
 
Backbonification for dummies - Arrrrug 10/1/2012
Backbonification for dummies - Arrrrug 10/1/2012Backbonification for dummies - Arrrrug 10/1/2012
Backbonification for dummies - Arrrrug 10/1/2012Dimitri de Putte
 
Introduction to j2 ee frameworks
Introduction to j2 ee frameworksIntroduction to j2 ee frameworks
Introduction to j2 ee frameworksMukesh Kumar
 
What's New in IBM Java 8 SE?
What's New in IBM Java 8 SE?What's New in IBM Java 8 SE?
What's New in IBM Java 8 SE?Tim Ellison
 
Intorduction to struts
Intorduction to strutsIntorduction to struts
Intorduction to strutsAnup72
 
Angular JS, A dive to concepts
Angular JS, A dive to conceptsAngular JS, A dive to concepts
Angular JS, A dive to conceptsAbhishek Sur
 
Play Framework and Activator
Play Framework and ActivatorPlay Framework and Activator
Play Framework and ActivatorKevin Webber
 
Frameworks Galore: A Pragmatic Review
Frameworks Galore: A Pragmatic ReviewFrameworks Galore: A Pragmatic Review
Frameworks Galore: A Pragmatic Reviewnetc2012
 
Jeetrainers.com coursejspservlets00
Jeetrainers.com coursejspservlets00Jeetrainers.com coursejspservlets00
Jeetrainers.com coursejspservlets00Rajesh Moorjani
 

Similar a Build Java Web Application Using Apache Struts (20)

JAVA EE training from 3rd-oct-2015
JAVA EE training from 3rd-oct-2015JAVA EE training from 3rd-oct-2015
JAVA EE training from 3rd-oct-2015
 
MVC Framework
MVC FrameworkMVC Framework
MVC Framework
 
Advance java1.1
Advance java1.1Advance java1.1
Advance java1.1
 
MVC + ORM (with project implementation)
MVC + ORM (with project implementation)MVC + ORM (with project implementation)
MVC + ORM (with project implementation)
 
Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC  Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC
 
Struts 2 Overview
Struts 2 OverviewStruts 2 Overview
Struts 2 Overview
 
170215 msa intro
170215 msa intro170215 msa intro
170215 msa intro
 
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
 
What is ASP.NET MVC
What is ASP.NET MVCWhat is ASP.NET MVC
What is ASP.NET MVC
 
Backbonification for dummies - Arrrrug 10/1/2012
Backbonification for dummies - Arrrrug 10/1/2012Backbonification for dummies - Arrrrug 10/1/2012
Backbonification for dummies - Arrrrug 10/1/2012
 
Eclipse e4
Eclipse e4Eclipse e4
Eclipse e4
 
Introduction to j2 ee frameworks
Introduction to j2 ee frameworksIntroduction to j2 ee frameworks
Introduction to j2 ee frameworks
 
Struts ppt 1
Struts ppt 1Struts ppt 1
Struts ppt 1
 
What's New in IBM Java 8 SE?
What's New in IBM Java 8 SE?What's New in IBM Java 8 SE?
What's New in IBM Java 8 SE?
 
Intorduction to struts
Intorduction to strutsIntorduction to struts
Intorduction to struts
 
Angular JS, A dive to concepts
Angular JS, A dive to conceptsAngular JS, A dive to concepts
Angular JS, A dive to concepts
 
Play Framework and Activator
Play Framework and ActivatorPlay Framework and Activator
Play Framework and Activator
 
Virtual classroom
Virtual classroomVirtual classroom
Virtual classroom
 
Frameworks Galore: A Pragmatic Review
Frameworks Galore: A Pragmatic ReviewFrameworks Galore: A Pragmatic Review
Frameworks Galore: A Pragmatic Review
 
Jeetrainers.com coursejspservlets00
Jeetrainers.com coursejspservlets00Jeetrainers.com coursejspservlets00
Jeetrainers.com coursejspservlets00
 

Último

JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard37
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)Samir Dash
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 

Último (20)

JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 

Build Java Web Application Using Apache Struts

  • 1. An Introduction to Building Web Application Using Jakarta Struts Framework Presented to Indianapolis Java User Group 10/30/2002 Wei Li
  • 2. Challenge from Building Web Applications • Stateless protocol • Multiple tiers • …
  • 3. Building Web Application with Java - Why it is good • Build once, run everywhere (platform- independent, vendor-independent) • Build it in an object-oriented way • Reusable components • Flexible and easy to be maintained and extended
  • 4. Building Web Application with Java - choices • Pure Java Servlets (control + presentation) • Java Servlets (control) + template engine (presentation) (Velocity, WebMacro, Tea) • Java Servlets (control) + XML and XSLT (presentation) • JSP (presentation + control) + Java Beans (control+model) (Model 1) • JSP(presentation) + Java Servlets (control)+ Java Beans (model) (Model 2)
  • 5. Problems with Pure Java Servlets - sample code public void printHTMLReport(PrintWriter out, Results results) { println(out, "<b>Poll:</b> " + poll.getId() + "<br>"); println(out, "<b>Question:</b> " + poll.getQuestion() + "<br>"); out.print("<b>Candidates:</b> "); this.printCandidates(out); println(out, "<br>"); println(out, "<br>"); println(out, "<b>The winner is...</b> " + results.getWinner() + "!<br>"); println(out, "<br><br>"); println(out, "Round-by-round summary:<br><br>"); … … }
  • 6. Problems with Pure Java Servlets • Servlets have to take care of presentation - which is not a good thing for it to do • HTML tags in the Java code • Hard to maintain and extend (every content change requires the compilation of Java classes) • Frustration of Java developers who are good at writing Java code but not HTML
  • 7. Problems with JSPs + Java Beans (Model 1) No controller - each page is responsible to direct control to the next page. request JSP Java EIS response Beans
  • 8. Problems with JSPs + Java Beans (Model 1) • Java code in HTML tags • Hard to maintain and change also • Frustration of content developer
  • 9. MVC and Model II • Aim to separate the flow control, business logic and presentation
  • 10. MVC and Model II • Model - this is you data in the system. Such as a poll, the profile of a poll administrator. • View - how data is represented to the user. For instance the view in a web application could be an HTML page, an image or other media. • Controller - is the glue between the model and the view. It is responsible for controlling the flow as well as processing updates from the model to the view and visa versa
  • 11. MVC and Model II • Model II - uses a controller Web container 1. request Controller 2 3 Model EIS 4 5. response View
  • 12. MVC and Model II • Controller - Java servelts • Model - Java Beans (domain objects, value objects) • View - JSP, XML + XSLT ….
  • 13. MVC and Model II • Many implementations available for choice • Expresso • Barracuda • Cocoon • WebWork • Velocity, Tea, WebMacro • ….
  • 14. MVC and Model II • And of course, you can build your own • But, Why? Regardless how you implement, you probably will end up with something similar or close to Struts.
  • 15. Break 1 A good scientist is a person with original ideas. A good engineer is a person who makes a design that works with as few original ideas as possible. --- Freeman Dyson
  • 16. Jakarta Struts - What is it? • A flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML). • An implementation of MVC Model II • A standardized and extensible web application design/implementation framework
  • 17. Jakarta Struts - General Info • Craig McClanahan created the original framework and donated it to Apache Software Foundation (ASF) in 2000. • Current stable release - 1.0.2. • 1.1 is in beta release. • The framework provides 9 package with 250 classes
  • 18. Jakarta Struts - Features • An Model II implementation of MVC • Big base packages and classes ready to use • Rich Custom Tag Libraries ready to use • Easy support for internationalization (I18N)
  • 19. Jakarta Struts - the whole picture configuration configuration Struts-config.xml request ActionServlet Message Bundle Controller action action action EIS Model response View Java Beans, JSP, Tag Library EJB, ... ….
  • 20. Jakarta Struts - the controller • ActionServlet - Responsible for flow of control - 1. receive all requests, 2. route/delegate request to Action for handling, 3. return response • One instance per web application • Uses a configuration file called struts-config.xml to read mapping data, which specify control flow information • Provided by the framework already. Ready to use but can also be extended
  • 21. Jakarta Struts - the controller • Action - the actual class which processes the request relevant to the business operation. Based on action mappings defined in an XML configuration file, the controller dispatches a call to the perform method of the appropriate Action Class. • Command pattern • Framework provides some actions. You need to implement you own action class for business purpose.
  • 22. Jakarta Struts - the model • You are responsible for creating it - Java Bean, EJB, etc. • Should be reusable domain objects and value objects to represent a state. • The framework works fine with any model implementation.
  • 23. Jakarta Struts - the view • JSP • Custom Tag Library • Resource Bundle
  • 24. Jakarta Struts - the view • Struts provides rich custom tag library to dramatically reduce Java code in your jsp. • Example: HTML, BEAN, LOGIC, TEMPLATES,… • We will see how handy they are in the case study
  • 25. Jakarta Struts - the others • ActionForm - encapsulate request/session data, typically used for input forms, provides a central point to validate form data.
  • 26. Jakarta Struts - the others • ActionMessage and ActionError
  • 27. Jakarta Struts - the configuration • Glue the system together • web.xml and struts-config.xml
  • 28. Jakarta Struts - the configuration • Web.xml: o define the controller servlet (ActionServlet)with initial parameters; o define URL mapping to be handled by the controller servlet; o define the Struts tag libraries.
  • 29. Jakarta Struts - the configuration • struts-config.xml o Glue all components together and set the rules for the application o Data Source Configuration o Form Bean Definitions o Action Mapping Definitions o Global Forward Definitions
  • 30. Break 2 A manager, an engineer, and a developer are going down a hill in a jeep when it suddenly loses control and goes into a ditch. They each attempt to offer a solution to the problem. The manager says 'Let's have a meeting to discuss a solution'. The engineer says 'Let's disassemble the jeep, and examine every part to find out where the problem is.' The developer says, 'Let's push it back up the hill and try again. http://www.middleware-company.com/offer/patternsday1/article4.shtml
  • 31. Case Study: An Online Instant Poll • Introduction - When I was having a hard time to define an appropriate application to really have my hands wet with Struts, I spotted Alex Chaffee’s JiffyPoll (http://www.purpletech.com/irv/index.html). I like his idea but not all his implementation. Then I began to apply the struts framework to it and extends its functionality …
  • 32. Case Study: An Online Instant Poll • What does it do? o As a normal user - you can select and vote a poll, you can view the results of any poll, you can also see the information about a poll. o As an administrator - you can create a new poll right away. You can also disable/enable a poll owned by you.
  • 33. Case Study: An Online Instant Poll • What does it do - Let us try it.
  • 34. Case Study: An Online Instant Poll Flat text file Web container as persistence Service interface media request PlainTextFilePollService controller Service DatabasePollService factory Relational EJBPollService Database response view model EJB Container
  • 35. Case Study: An Online Instant Poll • Benefits of the design o The real business logic is de-coupled from the controller, the model and the view o Increase of the reusability of the components - the service is completely reusable, the model (domain object and value object) is fully reusable also.
  • 36. Case Study: An Online Instant Poll • The controller - directly use ActionServlet provided by the framework • The action classes - delegate to service provider which does the real work.
  • 37. Case Study: An Online Instant Poll • The real business logic - de-coupled from the framework and stands as a independent/reusable component
  • 38. Case Study: An Online Instant Poll • The Model - reusable Java Beans, domain objects and value objects.
  • 39. Case Study: An Online Instant Poll • The view - use the data provided in the model • Rich use of tag library provide by the framework • Show some sample JSPs and includes • Almost no Java code in JSPs
  • 40. Case Study: An Online Instant Poll • Internationalization - easy to be implemented like a breeze • Demo
  • 41. Jakarta Struts - Why it is good • Promote clean separation of components
  • 42. Jakarta Struts - Why it is good • Increase the modularity, reusability of components
  • 43. Jakarta Struts - Why it is good • Focus on design
  • 44. Jakarta Struts - Why it is good • Very use case driven
  • 45. Jakarta Struts - Why it is good • What you need to do is clear • You can really focus on the real work - the business logic
  • 46. Jakarta Struts - Why it is good • Easy internationalization
  • 47. Jakarta Struts - Why it is good • Free • Open Source • Implemented by savvy developer/expert • large user community
  • 48. New features in 1.1 - what makes it better • Declarative exception handling <action path="/login" type="net.indyjug.weili.struts.security.LoginAction" name="loginForm" scope="request" validate="true" input="/jsp/login.jsp"> <exception key="error.invalidlogin" path=”/jsp/login.jsp" scope="request" type=”net.indyjug.weili.struts.exception.InvalidLoginException"/> <forward name="success" path="/jsp/administration.jsp" /> <forward name="failure" path="/jsp/login.jsp" /> </action>
  • 49. New features in 1.1 - what makes it better • Dynamic Form Bean
  • 50. New features in 1.1 - what makes it better • Plug-in
  • 51. New features in 1.1 - what makes it better • Tiles
  • 52. The learning curve • Not so easy for the first time. After that life is easy. • Manageable • Custom tag library may make mad at the beginning. Do not quit. They are so handy once you know how to use them.
  • 53. Fast Track: Getting Started • What you need o JDK 1.2 and above o Web Contained compliant with Servlet API 2.2 and JSP API 1.1 o An XML parser compliant with JAXP 1.1 or above (this is usually provided by the web container)
  • 54. Fast Track: Getting Started • The framework provides an application template for you to use and extend • Always continue on top of something which is working. • Build the whole structure first and leave the concrete implementation later on (example)