36
Database System Concepts ©Silberschatz, Korth and Sudarshan See www.db-book.com for conditions on re-use ©Silberschatz, Korth and Sudarsha Database System Concepts 1 ICOM 5016 – Introduction to ICOM 5016 – Introduction to Database Systems Database Systems Lecture 7 – Web Applications Dr. Manuel Rodriguez Martinez Department of Electrical and Computer Engineering University of Puerto Rico, Mayagüez Slides are adapted from:

Database System Concepts ©Silberschatz, Korth and Sudarshan See for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

Embed Size (px)

Citation preview

Page 1: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

Database System Concepts©Silberschatz, Korth and Sudarshan

See www.db-book.com for conditions on re-use

©Silberschatz, Korth and SudarshanDatabase System Concepts

1

ICOM 5016 – Introduction to ICOM 5016 – Introduction to Database SystemsDatabase Systems

Lecture 7 – Web ApplicationsDr. Manuel Rodriguez Martinez

Department of Electrical and Computer Engineering

University of Puerto Rico, Mayagüez

Slides are adapted from:

Page 2: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.2Database System Concepts, 5th Ed, slide version 5.0, August 2005.

2

Chapter 8: Application Design and Chapter 8: Application Design and Development Development

User Interfaces and Tools Web Interfaces to Databases Web Fundamentals CGI, Servlets and JSP Building Large Web Applications

Page 3: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.3Database System Concepts, 5th Ed, slide version 5.0, August 2005.

TODAY

3

Database UsersDatabase Users

Application Developers Build DB-enabled applications Use SQL to pose queries with these applications

DB Administrators Manage the DBMS Create and update schemas Use SQL to complete these tasks

Data Miners Sends ad-hoc queries to extract data and build

reports Use SQL to complete these tasks

Application (Naïve) users Interact with DB via client application program Do no use SQL (some might not even have a clue about

SQL)

Page 4: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.4Database System Concepts, 5th Ed, slide version 5.0, August 2005.

4

User Interfaces and ToolsUser Interfaces and Tools

Most database users do not use a query language like SQL. Forms Graphical user interfaces Report generators Data analysis tools (see Chapter 18)

Many interfaces are Web-based Now mobile apps (iOS, Android, Titanium, jQuery Mobile,

HTML5) Back-end (Web server) uses such technologies as

Java servlets & Java Server Pages (JSP) Active Server Pages (ASP) Node.js Rails Django Play

Page 5: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.5Database System Concepts, 5th Ed, slide version 5.0, August 2005.

5

Fat-Clients for Naïve UsersFat-Clients for Naïve Users

DB

DBMSApplicationProgram

Desktop PC DB Server

SQL

Table

Network

Page 6: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.6Database System Concepts, 5th Ed, slide version 5.0, August 2005.

6

Trade-offs for Fat clientsTrade-offs for Fat clients

Pros GUI friendly to users App has full access to client GUI Powerful features for complex tasks Good use of workstation power

Cons Lots of libraries and dependencies Need to install on every machine (hard to scale) Need different versions for each platform

(Windows, MacOS, etc.) Access limited to machines with installed app Requires more powerful workstation

Current status Less common

Page 7: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.7Database System Concepts, 5th Ed, slide version 5.0, August 2005.

7

Thin-Clients for Naïve UsersThin-Clients for Naïve Users

DB

WebApplicationProgram

WebBrowser

DBMSServer

HTTP

HTML

SQL

Table

SQL

Table

Desktop PC App Server DB Server

Page 8: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.8Database System Concepts, 5th Ed, slide version 5.0, August 2005.

8

Trade-offs for Thin ClientsTrade-offs for Thin Clients

Pros Runs from Web browser

Make application available everywhere Very scalable

GUI somewhat friendly to users but limited by browser

Powerful features for complex tasks Good use of machine power (tablet, or phone) Well-understood User interface

Cons GUI is usually weaker compared with Fat-clients

JavaScript, JavaServer Faces and AJAX changed this

Session management can be an issue

Page 9: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.9Database System Concepts, 5th Ed, slide version 5.0, August 2005.

9

Hybrid-Clients for Naïve UsersHybrid-Clients for Naïve Users

DB

WebApplicationProgram

WebBrowser

+App Scripts

DBMS

Desktop PC

HTTP

HTMLJavascript

SQL

Table

SQL

Table

App Server DB Server

Page 10: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.10Database System Concepts, 5th Ed, slide version 5.0, August 2005.

10

Trade-offs for Thin Clients as Trade-offs for Thin Clients as Mobile AppsMobile Apps

Pros Run locally but install from app store by end user

Make application available everywhere Very scalable to distribute & upgrade Get paid $$$

GUI friendly to users Powerful features for complex tasks Good use of machine power (tablet, or phone)

Cons Need different versions for each platform (iOS,

Android, etc.) Versions may behave differently accros platforms

Need app store to distribute things Approval process must be followed

Page 11: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.11Database System Concepts, 5th Ed, slide version 5.0, August 2005.

11

Three-Tier Web ArchitectureThree-Tier Web Architecture

Page 12: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.12Database System Concepts, 5th Ed, slide version 5.0, August 2005.

12

Two-Tier Web ArchitectureTwo-Tier Web Architecture

Multiple levels of indirection have overheads Alternative: two-tier architecture

Page 13: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.13Database System Concepts, 5th Ed, slide version 5.0, August 2005.

13

Web Interfaces to DatabasesWeb Interfaces to Databases

Why interface databases to the Web?

1. Web browsers have become the de-facto standard user interface to databases* Enable large numbers of users to access databases

from anywhere Leverage user familiarity with web browsers Avoid the need for downloading/installing

specialized code, while providing a good graphical user interface

Examples: banks, airline and rental car reservations, university course registration and grading, an so on.

Mobile Apps and responsive web apps are bound to grab a significant share of the market from browsers

Page 14: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.14Database System Concepts, 5th Ed, slide version 5.0, August 2005.

14

Web Interfaces to Database (Cont.)Web Interfaces to Database (Cont.)

2. Dynamic generation of documents Limitations of static HTML documents

Cannot customize fixed Web documents for every possible individual request

Problematic to update Web documents, especially if multiple Web documents replicate data.

Solution: Generate Web documents dynamically from data stored in a database. Can tailor the display based on user

information stored in the database.

– E.g. tailored ads, tailored weather and local news, …

Displayed information is up-to-date, unlike the static Web pages

– E.g. stock market information, ..

Page 15: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.15Database System Concepts, 5th Ed, slide version 5.0, August 2005.

15

The World Wide WebThe World Wide Web

The Web is a distributed information system based on hypertext.

Most Web documents are hypertext documents formatted via the HyperText Markup Language (HTML)

HTML documents contain text along with font specifications, and other

formatting instructions hypertext links to other documents, which can be

associated with regions of the text. forms, enabling users to enter data which can then

be sent back to the Web server Documents are accessed via the Hypertext Transfer

Protocol (HTTP)

Page 16: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.16Database System Concepts, 5th Ed, slide version 5.0, August 2005.

16

HTML and HTTPHTML and HTTP

HTML provides formatting, hypertext link, and image display features.

HTML also provides input features Select from a set of options

– Pop-up menus, radio buttons, check lists Enter values

– Text boxes Filled in input sent back to the server, to be

acted upon by an executable at the server HyperText Transfer Protocol (HTTP) used for

communication with the Web server

Page 17: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.17Database System Concepts, 5th Ed, slide version 5.0, August 2005.

Hypertext Transfer Protocol Hypertext Transfer Protocol (HTTP)(HTTP)

17

Client Server

Get <URL>

HTML Document

Page 18: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.18Database System Concepts, 5th Ed, slide version 5.0, August 2005.

18

Uniform Resources Locators (URLs)Uniform Resources Locators (URLs)

In the Web, functionality of pointers is provided by Uniform Resource Locators (URLs).

URL example:

http://www.bell-labs.com/topics/book/db-book The first part indicates how the document is to be

accessed “http” indicates that the document is to be accessed using the Hyper Text Transfer Protocol.

The second part gives the unique name of a machine on the Internet.

The rest of the URL identifies the document within the machine.

The local identification can be: The path name of a file on the machine, or An identifier (path name) of a program, plus arguments to be passed to the program

– E.g. http://www.google.com/search?q=silberschatz

Page 19: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.19Database System Concepts, 5th Ed, slide version 5.0, August 2005.

19

Web ServersWeb Servers A Web server can easily serve as a front end to a

variety of information services. The document name in a URL may identify an

executable program, that, when run, generates a HTML document. When a HTTP server receives a request for such

a document, it executes the program, and sends back the HTML document that is generated.

The Web client can pass extra arguments with the name of the document.

To install a new service on the Web, one simply needs to create and install an executable that provides that service. The Web browser provides a graphical user

interface to the information service. Common Gateway Interface (CGI): a standard

interface between web and application server

Page 20: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.20Database System Concepts, 5th Ed, slide version 5.0, August 2005.

20

Sample HTML Page With FormSample HTML Page With Form

<html>

<body>

<table border cols = 3>

<tr> <td> A-101 </td> <td> Downtown </td> <td> 500 </td> </tr>

<tr> <td> A-102 </td> <td> Perryridge </td> <td> 400 </td> </tr>

<tr> <td> A-201 </td> <td> Brighton </td> <td> 900 </td> </tr>

</table>

The <i>account</i> relation

<form action="BankQuery" method=get>

Select account/loan and enter number <br>

<select name="type">

<option value="account" selected> Account </option>

<option value="loan"> Loan </option>

</select>

<input type="text" size=15 name="number">

<br>

<input type="submit" value="submit">

</form>

</body>

</html>

Page 21: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.21Database System Concepts, 5th Ed, slide version 5.0, August 2005.

Browser OutputBrowser Output

21

Page 22: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.22Database System Concepts, 5th Ed, slide version 5.0, August 2005.

CGI Backend Using PythonCGI Backend Using Python

22

#!python -u#!/usr/bin/env python

import cgiimport cgitb; cgitb.enable() # for troubleshootingprint "Content-type: text/html"print

print """<html>

<head><title>Query Result</title></head>

<body><h3> Query Results </h3>"””form = cgi.FieldStorage()type = form.getvalue("type", "loan")number = form.getvalue("number", "(no number)")print """ <p>Type: %s</p> <p>Number: %s</p></body></html>""" % (cgi.escape(type), cgi.escape(number))

Page 23: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.23Database System Concepts, 5th Ed, slide version 5.0, August 2005.

23

Early Web-based frameworksEarly Web-based frameworks

Common Gateway Interface (CGI) “Plug-ins” for Web browser Written in C, C++ or Perl Hard to maintain and scale due to difficulty

Supporting multi-threading Packaging as components

PHP Better components Hard to debug and maintain code

JSP, ASP Easier to maintain Access to modern development tools Good performance

Page 24: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.24Database System Concepts, 5th Ed, slide version 5.0, August 2005.

24

Java Servlets AdvancesJava Servlets Advances

Java Servlet specification defines an API for communication between the Web server and application program E.g. methods to get parameter values and to send HTML

text back to client Application program (also called a servlet) is loaded

into the Web server Two-tier model Each request spawns a new thread in the Web server

thread is closed once the request is serviced Servlet API provides a getSession() method

Sets a cookie on first interaction with browser, and uses it to identify session on further interactions

Provides methods to store and look-up per-session information E.g. user name, preferences, ..

Page 25: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.25Database System Concepts, 5th Ed, slide version 5.0, August 2005.

25

Example Servlet CodeExample Servlet Codepublic class Bank extends HttpServlet {

private static final long serialVersionUID = 1L;

private double balance;

protected void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

// TODO Auto-generated method stub

String type = request.getParameter("type");

String number = request.getParameter("number");

// code to find the loan amount/account balance …

// ... using JDBC to communicate with the database.

// ... we assume the value is stored in the variable balance

// Set response content type

response.setContentType("text/html");

PrintWriter out = response.getWriter( );

out.println("<HEAD><TITLE>Query Result</TITLE></HEAD>");

out.println("<BODY>");

out.println("Balance on " + type + number + "=" + balance);

out.println("</BODY>");

out.close ( );

}

}

Page 26: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.26Database System Concepts, 5th Ed, slide version 5.0, August 2005.

26

Server-Side ScriptingServer-Side Scripting

Server-side scripting simplifies the task of connecting a database to the Web Define a HTML document with embedded executable

code/SQL queries. Input values from HTML forms can be used directly

in the embedded code/SQL queries. When the document is requested, the Web server

executes the embedded code/SQL queries to generate the actual HTML document.

Numerous server-side scripting languages JSP, Server-side Javascript, ColdFusion Markup

Language (cfml), PHP, Jscript General purpose scripting languages: VBScript,

Perl, Python

Page 27: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.27Database System Concepts, 5th Ed, slide version 5.0, August 2005.

Sample Backend With JSPSample Backend With JSP

27

<html><head><title>Using GET Method to Read Form Data</title></head><body><center><h1>Using GET Method to Read Form Data</h1><ul><li><p><b>Type:</b> <%= request.getParameter(”type")%></p></li><li><p><b>Number:</b> <%= request.getParameter(”number")%></p></li></ul></body></html>

Page 28: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.28Database System Concepts, 5th Ed, slide version 5.0, August 2005.

28

HTTP and SessionsHTTP and Sessions

The HTTP protocol is connectionless That is, once the server replies to a request, the

server closes the connection with the client, and forgets all about the request

In contrast, Unix logins, and JDBC/ODBC connections stay connected until the client disconnects retaining user authentication and other information

Motivation: reduces load on server operating systems have tight limits on number of open connections on a machine

Information services need session information E.g. user authentication should be done only once

per session Solution: use a cookie

Page 29: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.29Database System Concepts, 5th Ed, slide version 5.0, August 2005.

29

Sessions and CookiesSessions and Cookies

A cookie is a small piece of text containing identifying information Sent by server to browser on first interaction Sent by browser to the server that created the

cookie on further interactions part of the HTTP protocol

Server saves information about cookies it issued, and can use it when serving a request E.g., authentication information, and user preferences

Cookies can be stored permanently or for a limited time

Page 30: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.30Database System Concepts, 5th Ed, slide version 5.0, August 2005.

30

Model 1 Web ArchitectureModel 1 Web Architecture

Web Page

Application Server

DBMS DB

GUIComponents

DB AccessComponents

In Model 1 View and Logic are mixed in the Web page (e.g. JSP)

Page 31: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.31Database System Concepts, 5th Ed, slide version 5.0, August 2005.

31

Model 2 Web Architecture (MVC)Model 2 Web Architecture (MVC)

Web Page

Application Server

DBMS DB

GUIComponents (View)

DB AccessComponents (Model)

In Model 2 View, control Logic are separated(e.g. JSP, JSF)

Access ControlComponents (Control)

Page 32: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.32Database System Concepts, 5th Ed, slide version 5.0, August 2005.

32

Client Side Scripting and Client Side Scripting and AppletsApplets

Browsers can fetch certain scripts (client-side scripts) or programs along with documents, and execute them in “safe mode” at the client site Javascript Macromedia Flash and Shockwave for animation/games VRML Applets

Client-side scripts/programs allow documents to be active E.g., animation by executing programs at the local

site E.g. ensure that values entered by users satisfy some

correctness checks Permit flexible interaction with the user.

Executing programs at the client site speeds up interaction by avoiding many round trips to server

Page 33: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.33Database System Concepts, 5th Ed, slide version 5.0, August 2005.

33

Client Side Scripting and Client Side Scripting and SecuritySecurity

Security mechanisms needed to ensure that malicious scripts do not cause damage to the client machine Easy for limited capability scripting languages,

harder for general purpose programming languages like Java

E.g. Java’s security system ensures that the Java applet code does not make any system calls directly Disallows dangerous actions such as file writes Notifies the user about potentially dangerous

actions, and allows the option to abort the program or to continue execution.

Page 34: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.34Database System Concepts, 5th Ed, slide version 5.0, August 2005.

34

Improving Web Server PerformanceImproving Web Server Performance

Performance is an issue for popular Web sites May be accessed by millions of users every day,

thousands of requests per second at peak time Caching techniques used to reduce cost of serving

pages by exploiting commonalities between requests At the server site:

Caching of JDBC connections between servlet requests

Caching results of database queries

– Cached results must be updated if underlying database changes

Caching of generated HTML At the client’s network

Caching of pages by Web proxy

Page 35: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.35Database System Concepts, 5th Ed, slide version 5.0, August 2005.

SummarySummary

Web apps have become de factor UI for db apps

Three tier architectures offer scalable application architecture Client Tier- UI Middle Tier – application server Backend Tier – database server

Model View Controller (MVC) – design pattern for app implementation Model – code that implements storage representation

and business logic Controller – code that handles client request and

handles them to the appropriate model objects. View – code that implements the UI. Communicates with

controller and receives data from Model

35

Page 36: Database System Concepts ©Silberschatz, Korth and Sudarshan See  for conditions on re-use ©Silberschatz, Korth and SudarshanDatabase

©Silberschatz, Korth and Sudarshan8.36Database System Concepts, 5th Ed, slide version 5.0, August 2005.

36

A formatted reportA formatted report