Web Frameworks and WebWork
|
|
|
- Patience Bruce
- 10 years ago
- Views:
Transcription
1 Web Frameworks and WebWork
2 Problem area Mixing application logic and markup is bad practise Harder to change and maintain Error prone Harder to re-use public void doget( HttpServletRequest request, HttpServletResponse response ) { PrintWriter out = response.getwriter(); out.println( <html>\n<body> ); if ( request.getparameter( foo ).equals( bar ) ) out.println( <p>foo is bar!</p> ); else out.println( <p>foo is not bar!</p> ); } out.println( </body>\n</html> );
3 Advantages Separation of application logic and web design through the MVC pattern Integration ti with template t languages Some provides built-in components for Form validation Error handling Internationalization IDE integration
4 The MVC pattern Breaks an application into three parts: Model: The domain object model / service layer View: Template code/markup Controller: Presentation logic/action classes Defines interaction between components to promote loose coupling and re-use Each file has one responsibility Enables division of labour between programmers and designers
5 WebWork Sophisticated web framework Latest version is project merged with Struts Built on top of XWork a command pattern framework Can be integrated with object factories like Spring Required libraries webwork commons-logging velocity + velocity-tools servlet-api
6 MVC with Front Controller Front controller. Maps request URLs to controller classes. Implemented as a servlet. Web browser. Displays output. Web page template like JSP or Velocity. Command instances/ Action classes. Interacts with backend services of the system. Backend services working with the API/ data model.
7 Action Flow Response to client (random.vm) Result Client HTTP request to URL (getrandomstring.action) web.xml Stack of interceptors xwork.xml WebWork Stack of Action classes (config file) Servlet dispatcher interceptors (User code) (GetRandomStringAction.java)
8 Web.xml Maps URL patterns to the WebWork dispatcher Most typical pattern is *.action Located in WEB-INF/ folder Can redirect to the Filter- or ServletDispatcher <filter> <filter-name>webwork</filter-name> <filter-class>com.opensymphony.webwork.dispatcher.filterdispatcher</filter-class> </filter> <filter-mapping> <filter-name>webwork</filter-name> <url-pattern>*.action</url-pattern> </filter-mapping>
9 Xwork.xml Located in root of classpath Must include webwork-default.xml Maps URLs to action classes Maps result codes to results <xwork> <include file="webwork-default.xml"/> <package name="default" extends="webwork-default"> <action name= invertstring" class="no.uio.inf5750.example.action.invertstringaction"> <result name="success" type="velocity">word.vm</result> </action> </package> </xwork>
10 Action classes Java code executed when a URL is requested Must implement the Action interface or extend ActionSupport t Provides the execute method Must return a result code (SUCCESS, ERROR, INPUT) Used to map to results Properties es set by the request through public set-methodse Properties made available to the response through public get-methods
11 Action classes HTTP request getrandomstring.action?word=someenteredword public class InvertStringAction Implements Action implements Action { private String word; Must correspond to public void setword( String word ) { request parameter, this.word = word; exposed through set-method } Must correspond to property name in view, exposed through get-method Execute method with user code private String invertedword; public String getinvertedword() { return this.invertedword; i t d } public String execute() { char[] chars = word.tochararray(); // do some inverting here... Must return a result code (defined in Action) } } invertedword = buffer.tostring(); return SUCCESS;
12 View WebWork integrates with many view technologies JSP Velocity Freemarker JasperReports p Values sent to controller with POST or GET as usual Values made available a ab to the view by the controllero
13 View Velocity is a popular template engine and -language Java Action class public String getinvertedword() t d() { return this.invertedword; } <html> Form action to URL mapped in xwork.xml Input name corresponding to set-method in action class Velocity yparameter corresponding to get-method in action class <body> <form method= post action= invertstring invertstring.action action > > <p><input type= text name= word ></p> <p><input type= submit value= Invert ></p> </form> <p>$invertedword</p> </body> </html>
14 Xwork.xml advanced (1) Different result codes can be mapped to different results <xwork> <include file="webwork-default.xml"/> <package name="default" extends="webwork-default"> <action name= invertstring" class="no.uio.inf5750.example.action.invertstringaction"> <result name="success" type="velocity">word.vm</result> <result name= input type= velocity >input.vm</result> </action> </package> </xwork>
15 Xwork.xml advanced (2) Static parameters can be defined Requires public set-methods in action classes WebWork provides automatic type conversion <xwork> <include file="webwork-default.xml"/> <package name="default" extends="webwork-default"> <action name= invertstring" class="no.uio.inf5750.example.action.getrandomstringaction"> <result name="success" type="velocity">random.vm</result> <param name= numberofchars >32</param> </action> </package> </xwork>
16 Xwork.xml advanced (3) Xwork.xml files can include other files Files are merged Facilitates t breaking complex applications into manageable modules Specified files are searched for in classpath Configuration can be separated in multiple files / JARs <xwork> <include file="webwork-default.xml"/> <package name= default" extends= webwork-default > <! Default action mappings --> </package> <include file= xwork-public.xml /> <include file= xwork-secure.xml /> </xwork>
17 Xwork.xml advanced (4) Actions can be grouped in packages Useful for large systems to promote modular design A package can extend other packages Definitions from the extended package are included Configuration of commons elements can be centralizeded <xwork> <include file="webwork-default.xml"/> <package name="default" extends="webwork-default"> <action name= invertstring class= no.uio.no.example.action.invertstringaction > <! mapping omitted --> </action> </package> <package name= secure extends= default > <! Secure action mappings --> </package> </xwork>
18 Xwork.xml advanced (5) Actions can be grouped in namespaces Namespaces map URLs to actions Actions identified by the name and the namespace it belongs to Facilitates modularization and maintainability <xwork> <include file="webwork-default.xml"/> <package name= secure" extends= default namespace= /secure > <action name= getusername class= no.uio.inf5750.example.action.getusernameaction > <result name= success type= velocity >username.vm</result> </action> </package> </xwork>
19 Interceptors Invoked before and/or after the execution of an action Enables centralization of concerns like security, logging <xwork> <include file="webwork webwork-default.xml xml"/> <package name="default" extends="webwork-default"> <interceptors> <interceptor name= profiling class= no.uio.example.interceptor.profilinginterceptor /> </interceptors> <action name= invertstring class= no.uio.no.example.action.invertstringaction > <result name= success type= velocity >word.vm</result> y <interceptor-ref name= profiling /> </action> </package> </xwork>
20 Provided interceptors Interceptors perform many tasks in WebWork ParametersInterceptor (HTTP request params) StaticParametersInterceptor (config params) ChainingInterceptor Many interceptor stacks provided in webwork-default.xml defaultstack i18nstack fileuploadstack and more
21 Interceptor stacks Interceptors should be grouped in stacks A default interceptor stack can be defined Should include the WebWork default stack <xwork> <! include file and package omitted --> <interceptors> <interceptor name= profiling class= no.uio.example.interceptor.profilinginterceptor /> <interceptor name= logging class= no.uio.example.logging.logginginterceptor /> <interceptor-stack name= examplestack > <interceptor-ref name= defaultstack /> <interceptor-ref name= profiling /> <interceptor-ref name= logging /> </interceptor-stack> </interceptors> <default-interceptor-refp name= examplestack /> </xwork>
22 Result types Determines behaviour after the action is executed and the result is returned Several result types bundled d with WebWork Dispatcher (JSP) Default -will generate a JSP view Velocity Will generate a Velocity view Redirect Will redirect the request to the specified action after execution Chain Same as redirect but makes all parameters available to the p following action
23 Result types Chain result type. The properties in GetRandomStringAction will be available for InvertStringAction. Redirect result type. Redirects the request to another action after being executed. Velocity result type. <xwork> <include file="webwork-default.xml"/> <package name="default" extends="webwork-default"> <action name= getrandomstring class= no.uio...getrandomstringaction > <result name= success type= chain >invertstring</result> <result name= input type= redirect >error.action</result> </action> <action name= invertstring class= no.uio...invertstringaction > <result name= success type= velocity >word.vm</result> </action> </package> </xwork> Generates a HTML response based on a Velocity template.
24 Result types Several provided result types integrated with ext tools JasperReports Flash Freemarker Custom result types can be defined <xwork> <include name= webwork-default.xml /> <package name= default extends= webwork-default > <result-types> <result-type name= velocityxml class= no.uio.inf5750.example.xmlresult /> </result-types> </package> </xwork> } public class XMLResult implements Result { public void execute( ActionInvocation invocation ) { Action action = invocation.getaction(); } // Print to HTTPServletResponse or // modify action parameters or whatever..
25 IoC WebWork has its own IoC container - deprecated Should be integrated with third party containers (Spring) webwork.properties webwork.objectfactory = spring xwork.xml The class property in action mappings will refer to Spring bean ids instead of classes. <xwork> <! Include file and package omitted --> <action name= getrandomstring class= getrandomstringaction > <result name= success type= chain >invertstring</result> </action> </xwork> beans.xml Spring configuration file. <bean id= getrandomstringaction class= no.uio.inf5750.example.action.getrandomstringaction />
26 Velocity Velocity is a template language Template: basis for documents with similar structure Template language: format defining where variables should be replaced in a document Features include: Variable replacement Simple control structures Method invocation Velocity result is included in webwork-default.xml Velocity is a runtime language Fast Error prone
27 Velocity Variable replacement Control structures <html> <head><title>$word</title></head> <body> #if ( $word == Hello ) <div style= background-color: red > #elseif ( $word == Goodbye ) <div style =background-color: blue > #else <div> #end Method call $word.substring( 10) </div> Loop #foreach ( $word in $words ) <p>$word</p> #end </body> </html>
28 WebWork in DHIS 2 WebWork support project (dhis-support-webwork) Filters Application logic interceptors Custom results Webwork commons project (dhis-web-commons) Java code for widgets, security, portal Interceptor, result configuration Packaged as JAR file Webwork commons resources project (dhis-webcommons-resource ) Web resources like templates, javascripts, css Packaged as WAR file
29 Web modules in DHIS 2 Templates included in backbone template main.vm Static params in WebWork configuration Must depend d on dhis-web-commons and dhis-webcommons-resources XWork package must Include and extend dhis-web-commons.xml instead of webworkdefault.xml Have the same package name as the artifact id Have the same namespace as the artifact id Development tip: $ mvn jetty:run war Packages and deploys war file to Jetty for rapid development
30 Resources Patrick Lightbody, Jason Carreira: WebWork in Action Velocity user guide: Webwork self study Taglibs Internationalisation Validation
Model-View-Controller. and. Struts 2
Model-View-Controller and Struts 2 Problem area Mixing application logic and markup is bad practise Harder to change and maintain Error prone Harder to re-use public void doget( HttpServletRequest request,
Java and Web. WebWork
Java and Web WebWork Client/Server server client request HTTP response Inside the Server (1) HTTP requests Functionality for communicating with clients using HTTP CSS Stat. page Dyn. page Dyn. page Our
Web Applications and Struts 2
Web Applications and Struts 2 Problem area Problem area Separation of application logic and markup Easier to change and maintain Easier to re use Less error prone Access to functionality to solve routine
In this chapter, we lay the foundation for all our further discussions. We start
01 Struts.qxd 7/30/02 10:23 PM Page 1 CHAPTER 1 Introducing the Jakarta Struts Project and Its Supporting Components In this chapter, we lay the foundation for all our further discussions. We start by
Web Container Components Servlet JSP Tag Libraries
Web Application Development, Best Practices by Jeff Zhuk, JavaSchool.com ITS, Inc. [email protected] Web Container Components Servlet JSP Tag Libraries Servlet Standard Java class to handle an HTTP request
Complete Java Web Development
Complete Java Web Development JAVA-WD Rev 11.14 4 days Description Complete Java Web Development is a crash course in developing cutting edge Web applications using the latest Java EE 6 technologies from
Web Applications. For live Java training, please see training courses at
2009 Marty Hall Using and Deploying Web Applications Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/msajsp.html Customized Java EE Training: http://courses.coreservlets.com/
DTS Web Developers Guide
Apelon, Inc. Suite 202, 100 Danbury Road Ridgefield, CT 06877 Phone: (203) 431-2530 Fax: (203) 431-2523 www.apelon.com Apelon Distributed Terminology System (DTS) DTS Web Developers Guide Table of Contents
Pentesting Web Frameworks (preview of next year's SEC642 update)
Pentesting Web Frameworks (preview of next year's SEC642 update) Justin Searle Managing Partner UtiliSec Certified Instructor SANS Institute [email protected] // @meeas What Are Web Frameworks Frameworks
An introduction to creating JSF applications in Rational Application Developer Version 8.0
An introduction to creating JSF applications in Rational Application Developer Version 8.0 September 2010 Copyright IBM Corporation 2010. 1 Overview Although you can use several Web technologies to create
Servlet 3.0. Alexis Moussine-Pouchkine. mercredi 13 avril 2011
Servlet 3.0 Alexis Moussine-Pouchkine 1 Overview Java Servlet 3.0 API JSR 315 20 members Good mix of representation from major Java EE vendors, web container developers and web framework authors 2 Overview
Web Applications. Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/msajsp.html
2009 Marty Hall Using and Deploying Web Applications Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/msajsp.html Customized Java EE Training: http://courses.coreservlets.com/
Creating Java EE Applications and Servlets with IntelliJ IDEA
Creating Java EE Applications and Servlets with IntelliJ IDEA In this tutorial you will: 1. Create IntelliJ IDEA project for Java EE application 2. Create Servlet 3. Deploy the application to JBoss server
Course Name: Course in JSP Course Code: P5
Course Name: Course in JSP Course Code: P5 Address: Sh No BSH 1,2,3 Almedia residency, Xetia Waddo Duler Mapusa Goa E-mail Id: [email protected] Tel: (0832) 2465556 (0832) 6454066 Course Code: P5 3i
Web Programming II JSP (Java Server Pages) ASP request processing. The Problem. The Problem. Enterprise Application Development using J2EE
Enterprise Application Development using J2EE Shmulik London Lecture #6 Web Programming II JSP (Java Server Pages) How we approached it in the old days (ASP) Multiplication Table Multiplication
JBoss Portlet Container. User Guide. Release 2.0
JBoss Portlet Container User Guide Release 2.0 1. Introduction.. 1 1.1. Motivation.. 1 1.2. Audience 1 1.3. Simple Portal: showcasing JBoss Portlet Container.. 1 1.4. Resources. 1 2. Installation. 3 2.1.
Developing Web Applications using JavaServer Pages and Servlets
Redpaper Martin Keen Rafael Coutinho Sylvi Lippmann Salvatore Sollami Sundaragopal Venkatraman Steve Baber Henry Cui Craig Fleming Developing Web Applications using JavaServer Pages and Servlets This IBM
Oracle WebLogic Foundation of Oracle Fusion Middleware. Lawrence Manickam Toyork Systems Inc www.toyork.com http://ca.linkedin.
Oracle WebLogic Foundation of Oracle Fusion Middleware Lawrence Manickam Toyork Systems Inc www.toyork.com http://ca.linkedin.com/in/lawrence143 History of WebLogic WebLogic Inc started in 1995 was a company
Web Presentation Layer Architecture
Chapter 4 Web Presentation Layer Architecture In this chapter we provide a discussion of important current approaches to web interface programming based on the Model 2 architecture [59]. From the results
Hello World Portlet Rendered with JSP for WebSphere Portal Version 4.1
1 of 11 16.10.2002 11:41 Hello World Portlet Rendered with JSP for WebSphere Portal Version 4.1 Table of Contents Creating the directory structure Creating the Java code Compiling the code Creating the
PowerTier Web Development Tools 4
4 PowerTier Web Development Tools 4 This chapter describes the process of developing J2EE applications with Web components, and introduces the PowerTier tools you use at each stage of the development process.
BIRT Application and BIRT Report Deployment Functional Specification
Functional Specification Version 1: October 6, 2005 Abstract This document describes how the user will deploy a BIRT Application and BIRT reports to the Application Server. Document Revisions Version Date
Tutorial: Building a Web Application with Struts
Tutorial: Building a Web Application with Struts Tutorial: Building a Web Application with Struts This tutorial describes how OTN developers built a Web application for shop owners and customers of the
Drupal CMS for marketing sites
Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit
How To Understand The Architecture Of Java 2Ee, J2Ee, And J2E (Java) In A Wordpress Blog Post
Understanding Architecture and Framework of J2EE using Web Application Devadrita Dey Sarkar,Anavi jaiswal, Ankur Saxena Amity University,UTTAR PRADESH Sector-125, Noida, UP-201303, India Abstract: This
Course Number: IAC-SOFT-WDAD Web Design and Application Development
Course Number: IAC-SOFT-WDAD Web Design and Application Development Session 1 (10 Hours) Client Side Scripting Session 2 (10 Hours) Server Side Scripting - I Session 3 (10 hours) Database Session 4 (10
JBoss SOAP Web Services User Guide. Version: 3.3.0.M5
JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...
CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1
CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 WITHOUT TEMPLATE LOCALIZATION, WITHOUT WEBDAV AND IN ONE WAR FILE Simona Bracco Table of Contents Introduction...3 Extract theme dynamic and static resources...3
CrownPeak Java Web Hosting. Version 0.20
CrownPeak Java Web Hosting Version 0.20 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,
GlassFish v3. Building an ex tensible modular Java EE application server. Jerome Dochez and Ludovic Champenois Sun Microsystems, Inc.
GlassFish v3 Building an ex tensible modular Java EE application server Jerome Dochez and Ludovic Champenois Sun Microsystems, Inc. Agenda Java EE 6 and GlassFish V3 Modularity, Runtime Service Based Architecture
Getting Started with Web Applications
3 Getting Started with Web Applications A web application is a dynamic extension of a web or application server. There are two types of web applications: Presentation-oriented: A presentation-oriented
Aspect Oriented Programming. with. Spring
Aspect Oriented Programming with Spring Problem area How to modularize concerns that span multiple classes and layers? Examples of cross-cutting concerns: Transaction management Logging Profiling Security
Reporting and JSF. Possibilities, solutions, challenges. Slide 1. Copyright 2009, Andy Bosch, www.jsf-portlets.net
Reporting and JSF Possibilities, solutions, challenges Slide 1 Agenda What is reporting? Why do we need it? The JSF example application Introduction to reporting engines Overview Eclipse BIRT JasperReports
Design and Functional Specification
2010 Design and Functional Specification Corpus eready Solutions pvt. Ltd. 3/17/2010 1. Introduction 1.1 Purpose This document records functional specifications for Science Technology English Math (STEM)
SESM Tag Library. Configuring a Tag Library APPENDIX
APPENDIX A This appendix provides information on configuring an SESM tag library and describes the SESM tag libraries other than the Localization tag library: Iterator Tag Library, page A-2 Navigator Tag
Sightly Component Development
Sightly Component Development @GabrielWalt, Product Manager @RaduCotescu, Product Developer Development Workflow Design HTML/CSS Web Developer HTML CSS/JS Inefficiency Static HTML being handed over Component
Web Application Architecture (based J2EE 1.4 Tutorial)
Web Application Architecture (based J2EE 1.4 Tutorial) 1 Disclaimer & Acknowledgments Even though Sang Shin is a full-time employee of Sun Microsystems, the contents here are created as his own personal
An introduction to web programming with Java
Chapter 1 An introduction to web programming with Java Objectives Knowledge Objectives (continued) The first page of a shopping cart application The second page of a shopping cart application Components
Spring Security SAML module
Spring Security SAML module Author: Vladimir Schäfer E-mail: [email protected] Copyright 2009 The package contains the implementation of SAML v2.0 support for Spring Security framework. Following
Servlet and JSP Filters
2009 Marty Hall Servlet and JSP Filters Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/course-materials/msajsp.html Customized Java EE Training: http://courses.coreservlets.com/
Enterprise Application Development In Java with AJAX and ORM
Enterprise Application Development In Java with AJAX and ORM ACCU London March 2010 ACCU Conference April 2010 Paul Grenyer Head of Software Engineering [email protected] http://paulgrenyer.blogspot.com
Outline. CS 112 Introduction to Programming. Recap: HTML/CSS/Javascript. Admin. Outline
Outline CS 112 Introduction to Programming Web Programming: Backend (server side) Programming with Servlet, JSP q Admin and recap q Server-side web programming overview q Servlet programming q Java servlet
Development. with NetBeans 5.0. A Quick Start in Basic Web and Struts Applications. Geertjan Wielenga
Web Development with NetBeans 5.0 Quick Start in Basic Web and Struts pplications Geertjan Wielenga Web Development with NetBeans 5 This tutorial takes you through the basics of using NetBeans IDE 5.0
<Insert Picture Here> Hudson Security Architecture. Winston Prakash. Click to edit Master subtitle style
Hudson Security Architecture Click to edit Master subtitle style Winston Prakash Hudson Security Architecture Hudson provides a security mechanism which allows Hudson Administrators
Struts Tools Tutorial. Version: 3.3.0.M5
Struts Tools Tutorial Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features Struts Tools... 1 1.2. Other relevant resources on the topic... 2 2. Creating a Simple Struts Application... 3 2.1. Starting
Oracle Hyperion Financial Management Custom Pages Development Guide
Oracle Hyperion Financial Management Custom Pages Development Guide CONTENTS Overview... 2 Custom pages... 2 Prerequisites... 2 Sample application structure... 2 Framework for custom pages... 3 Links...
Controlling Web Application Behavior
2006 Marty Hall Controlling Web Application Behavior The Deployment Descriptor: web.xml JSP, Servlet, Struts, JSF, AJAX, & Java 5 Training: http://courses.coreservlets.com J2EE Books from Sun Press: http://www.coreservlets.com
Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator
Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun ([email protected]) Sudha Piddaparti ([email protected]) Objective In this
SSC - Web development Model-View-Controller for Java web application development
SSC - Web development Model-View-Controller for Java web application development Shan He School for Computational Science University of Birmingham Module 06-19321: SSC Outline Outline of Topics Java Server
2. Follow the installation directions and install the server on ccc
Installing a Web Server 1. Install a sample web server, which supports Servlets/JSPs. A light weight web server is Apache Tomcat server. You can get the server from http://tomcat.apache.org/ 2. Follow
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i
Oracle Forms Services Secure Web.Show_Document() calls to Oracle Reports Server 6i $Q2UDFOH7HFKQLFDO:KLWHSDSHU 0DUFK Secure Web.Show_Document() calls to Oracle Reports Server 6i Introduction...3 solution
zen Platform technical white paper
zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant
Glassfish, JAVA EE, Servlets, JSP, EJB
Glassfish, JAVA EE, Servlets, JSP, EJB Java platform A Java platform comprises the JVM together with supporting class libraries. Java 2 Standard Edition (J2SE) (1999) provides core libraries for data structures,
Proposal for DSpace Web MVC
Proposal for DSpace Web MVC QIN ZHENGQUAN Short description: In my experiences of building enterprise applications (Tourist Portal and Video rental system) my JSP pages were often peppered with scriptlets
MVC pattern in java web programming
MVC pattern in java web programming Aleksandar Kartelj, Faculty of Mathematics Belgrade DAAD workshop Ivanjica 6. -11.9.2010 Serbia September 2010 Outline 1 2 3 4 5 6 History Simple information portals
Case Studies of Running the Platform. NetBeans UML Servlet JSP GlassFish EJB
September Case Studies of Running the Platform NetBeans UML Servlet JSP GlassFish EJB In this project we display in the browser the Hello World, Everyone! message created in the session bean with servlets
Agenda. Summary of Previous Session. Application Servers G22.3033-011. Session 3 - Main Theme Page-Based Application Servers (Part II)
Application Servers G22.3033-011 Session 3 - Main Theme Page-Based Application Servers (Part II) Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical
Software project management. and. Maven
Software project management and Maven Problem area Large software projects usually contain tens or even hundreds of projects/modules Will become messy if the projects don t adhere to some common principles
Maven 2 in the real world
Object Oriented and beyond Maven 2 in the real world Carlo Bonamico [email protected] JUG Genova Maven2: love it or hate it? Widespread build platform used by many open source and commercial projects
What means extensibility?
Extendable Web Technologies focused on JAVA Technology Juli 2006 Robert Schmelzer, DI(FH) E-Mail: [email protected] Web: http://www.schmelzer.cc Extendable Web Technologies - 1 What means extensibility?...extensibility
Esigate Module Documentation
PORTAL FACTORY 1.0 Esigate Module Documentation Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels to truly control
Design Approaches of Web Application with Efficient Performance in JAVA
IJCSNS International Journal of Computer Science and Network Security, VOL.11 No.7, July 2011 141 Design Approaches of Web Application with Efficient Performance in JAVA OhSoo Kwon and HyeJa Bang Dept
Server Setup and Configuration
Server Setup and Configuration 1 Agenda Configuring the server Configuring your development environment Testing the setup Basic server HTML/JSP Servlets 2 1 Server Setup and Configuration 1. Download and
Mastering Tomcat Development
hep/ Mastering Tomcat Development Ian McFarland Peter Harrison '. \ Wiley Publishing, Inc. ' Part I Chapter 1 Chapter 2 Acknowledgments About the Author Introduction Tomcat Configuration and Management
Certified PHP/MySQL Web Developer Course
Course Duration : 3 Months (120 Hours) Day 1 Introduction to PHP 1.PHP web architecture 2.PHP wamp server installation 3.First PHP program 4.HTML with php 5.Comments and PHP manual usage Day 2 Variables,
Crawl Proxy Installation and Configuration Guide
Crawl Proxy Installation and Configuration Guide Google Enterprise EMEA Google Search Appliance is able to natively crawl secure content coming from multiple sources using for instance the following main
This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.
20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction
Stock Trader System. Architecture Description
Stock Trader System Architecture Description Michael Stevens [email protected] http://www.mestevens.com Table of Contents 1. Purpose of Document 2 2. System Synopsis 2 3. Current Situation and Environment
Security Code Review- Identifying Web Vulnerabilities
Security Code Review- Identifying Web Vulnerabilities Kiran Maraju, CISSP, CEH, ITIL, SCJP Email: [email protected] 1 1.1.1 Abstract Security Code Review- Identifying Web Vulnerabilities This paper
Alfresco. Wiley Publishing, Inc. PROFESSIONAL. PRACTICAL SOLUTIONS FOR ENTERPRISE. John Newton CONTENT MANAGEMENT. Michael Farman Michael G.
PROFESSIONAL. Alfresco PRACTICAL SOLUTIONS FOR ENTERPRISE CONTENT MANAGEMENT David Caruana John Newton Michael Farman Michael G. Uzquiano Kevin Roast WILEY Wiley Publishing, Inc. INTRODUCTION xxix CHAPTER
Java Servlet 3.0. Rajiv Mordani Spec Lead
Java Servlet 3.0 Rajiv Mordani Spec Lead 1 Overview JCP Java Servlet 3.0 API JSR 315 20 members > Good mix of representation from major Java EE vendors, web container developers and web framework authors
Developer Tutorial Version 1. 0 February 2015
Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...
Customer Bank Account Management System Technical Specification Document
Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6
Install guide for Websphere 7.0
DOCUMENTATION Install guide for Websphere 7.0 Jahia EE v6.6.1.0 Jahia s next-generation, open source CMS stems from a widely acknowledged vision of enterprise application convergence web, document, search,
Services. Custom Tag Libraries. Today. Web Development. Role-Based. Development. Code Reuse. Tag Libraries Custom Tags. Tag Lifecycle.
JSP, and JSP, and 1 JSP, and Custom Lecture #6 2008 2 JSP, and JSP, and interfaces viewed as user interfaces methodologies derived from software development done in roles and teams role assignments based
Oracle Hyperion Financial Management Developer and Customization Guide
Oracle Hyperion Financial Management Developer and Customization Guide CONTENTS Overview... 1 Financial Management SDK... 1 Prerequisites... 2 SDK Reference... 2 Steps for running the demo application...
MarkLogic Server. Reference Application Architecture Guide. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.
Reference Application Architecture Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents
S3 Monitor Design and Implementation Plans
S 3 Monitor Version 1.0 Specifications and Integration Plan 1 Copyright c 2011 Hewlett Packard Copyright c 2011 Purdue University Permission is hereby granted, free of charge, to any person obtaining a
JSP Java Server Pages
JSP - Java Server Pages JSP Java Server Pages JSP - Java Server Pages Characteristics: A way to create dynamic web pages, Server side processing, Based on Java Technology, Large library base Platform independence
Server-Side Web Development JSP. Today. Web Servers. Static HTML Directives. Actions Comments Tag Libraries Implicit Objects. Apache.
1 Pages () Lecture #4 2007 Pages () 2 Pages () 3 Pages () Serves resources via HTTP Can be anything that serves data via HTTP Usually a dedicated machine running web server software Can contain modules
Intellicus Single Sign-on
Intellicus Single Sign-on Intellicus Enterprise Reporting and BI Platform Intellicus Technologies [email protected] www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content
Software project management. and. Maven
Software project management and Maven Problem area Large software projects usually contain tens or even hundreds of projects/modules Will become messy and incomprehensible ibl if the projects don t adhere
Expert Spring MVC and Web Flow
Expert Spring MVC and Web Flow Seth Ladd with Darren Davison, Steven Devijver and Colin Yates ULB Darmstadt 76386 Apress* Contents at a Glance About the Authors About the Technical Reviewers Acknowledgments
Cache Configuration Reference
Sitecore CMS 6.2 Cache Configuration Reference Rev: 2009-11-20 Sitecore CMS 6.2 Cache Configuration Reference Tips and Techniques for Administrators and Developers Table of Contents Chapter 1 Introduction...
NextRow - AEM Training Program Course Catalog
NextRow - AEM Training Program Course Catalog Adobe Experience Manager Training Program Course Catalog NextRow provides Adobe CQ training solutions designed to meet your unique project demands. To optimize
HPC Portal Development Platform with E-Business and HPC Portlets
HPC Portal Development Platform with E-Business and HPC Portlets CHIEN-HENG WU National Center for High-Performance Computing, Hsin-Chu, 300, Taiwan E-mail: [email protected] Abstract HPC Portal Development
ACM Crossroads Student Magazine The ACM's First Electronic Publication
Page 1 of 8 ACM Crossroads Student Magazine The ACM's First Electronic Publication Crossroads Home Join the ACM! Search Crossroads [email protected] ACM / Crossroads / Columns / Connector / An Introduction
Introduction to J2EE Web Technologies
Introduction to J2EE Web Technologies Kyle Brown Senior Technical Staff Member IBM WebSphere Services RTP, NC [email protected] Overview What is J2EE? What are Servlets? What are JSP's? How do you use
Web Application Development
Web Application Development Introduction to application servers, web applications and portlets Riccardo Rotondo [email protected] Catania, 10/03/2014 Outline } Scenario } Application Server }
Software Development Kit
Open EMS Suite by Nokia Software Development Kit Functional Overview Version 1.3 Nokia Siemens Networks 1 (21) Software Development Kit The information in this document is subject to change without notice
Liferay Enterprise ecommerce. Adding ecommerce functionality to Liferay Reading Time: 10 minutes
Liferay Enterprise ecommerce Adding ecommerce functionality to Liferay Reading Time: 10 minutes Broadleaf + Liferay ecommerce + Portal Options Integration Details REST APIs Integrated IFrame Separate Conclusion
Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1.
Avaya Solution & Interoperability Test Lab Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1.0 Abstract
Building Web Services with Apache Axis2
2009 Marty Hall Building Web Services with Apache Axis2 Part I: Java-First (Bottom-Up) Services Customized Java EE Training: http://courses.coreservlets.com/ Servlets, JSP, Struts, JSF/MyFaces/Facelets,
