17-04-2012 modern programming language. web container & web applications web applications are...

5
17-04-2012 Modern Programming Language

Upload: martin-copeland

Post on 17-Jan-2018

217 views

Category:

Documents


0 download

DESCRIPTION

Web Container & Web Applications To meet these requirements when building and running web applications, the j2ee specification provides the following  Java servlets and Java Server Pages  In J2EE java servlets and java server pages are called web components  Web Applications  It could be a collection of java servlets, jsp pages, helper classes, class libraries, static resources, documents and images  Web container  A web container is essentially a java runtime that provides an implementation of java servlet API and facilities for JSP pages

TRANSCRIPT

Page 1: 17-04-2012 Modern Programming Language. Web Container & Web Applications Web applications are server side applications The most essential requirement

17-04-2012

Modern Programming Language

Page 2: 17-04-2012 Modern Programming Language. Web Container & Web Applications Web applications are server side applications The most essential requirement

Web Container & Web Applications

Web applications are server side applicationsThe most essential requirement for server

side application development are: A programming model and an API Server Side runtime support Deployment Support

Page 3: 17-04-2012 Modern Programming Language. Web Container & Web Applications Web applications are server side applications The most essential requirement

Web Container & Web Applications

To meet these requirements when building and running web applications, the j2ee specification provides the following Java servlets and Java Server Pages

In J2EE java servlets and java server pages are called web components

Web Applications It could be a collection of java servlets, jsp pages, helper

classes, class libraries, static resources, documents and images

Web container A web container is essentially a java runtime that provides an

implementation of java servlet API and facilities for JSP pages

Page 4: 17-04-2012 Modern Programming Language. Web Container & Web Applications Web applications are server side applications The most essential requirement

A packaging structure and deployment descriptor The J2EE specification defines a packaging structure for

web applications. The specification also defines a deployment descriptor for each web application

The deployment descriptor is an XML file that allows the customization of web applications at deployment time

Page 5: 17-04-2012 Modern Programming Language. Web Container & Web Applications Web applications are server side applications The most essential requirement

Java Servlets

Java servlets are small, platform independent server side programs that programmatically extend the functionality of the web server

The java servlet API provides a simple framework for building application on such web servers