Week 1 Flashcards
JSP Scriptlets start with what? Their use?
//
Used for java Code
JSP Declarations start with what? Their use?
//
Used for declaring Java methods
JSP Directives start with what? Their use?
//
Used for implementing tags
Importing packages
Defining page content
JSP expressions start with what? Their use?
//
Used for using any java expression that can be used in System.out.println();
Compare JSP comments to HTML?
JSP declaration
JSP comments dont get submitted to the browser
HTML comments do not hide JSP code from the compiler
A web application is a type of?
Client/server application
A servlet
Runs on a server
An http request
is sent from the web browser to a web server
The specification that describes how web servers can interact with all Java Web technologies is known as
The Java Enterprise Edition Java EE
To develop web applications you can use IDE such as?
Eclipse/Netbeans
A presentation layer for typical servlet/jsp web application consists of?
HTML, JSPs
For web applications data can be stored in?
text files
xml
databases
Two other approaches other than JSP/servlet?
Spring and JSF
An API for working with databases?
JPA
Multi-Tier Layer Components?
Presentation layer: html, jsps
Business Layer: Servlets, JavaBeans, JavaClasses
Data Access: Data Access Classes.