SlideShare a Scribd company logo
Java Server Pages(JSP)
Web&java. jsp
JavaServer Pages (JSP)
позволяют вам отделить
динамическую часть ваших
страниц от статического HTML.
Вы, как обычно, пишете обычный
код в HTML, используя для этого
любую программу для создания
Web страниц. Затем вы
заключаете динамическую часть
кода в специальные таги,
большинство которых начинаются
с "<%" и завершаются "%>".
Жизненный цикл jsp
First jsp
<html>
<head>
<title>
Hello World Sample
</title>
</head>
<body>
<h1>
<%
String name = request.getParameter("name");
if (name == null || name.length() == 0) {
%>
Hello, world !
<% } else {
%>
Hello, world ! I'm <%= name%>
<%
}
%>
</h1>
</body>
</html>
Структура каталога web-app в
каталоге src.
Синтаксис jsp.
The Scriptlet:<% code fragment %>
<html>
<head>
<title>Hello World</title></head>
<body> Hello World!<br/> <%
out.println("Your IP address is " +
request.getRemoteAddr()); %>
</body>
</html>
JSP Declarations:
<%! declaration; [ declaration; ]
+ ... %>
<%! int i = 0; %>
<%! int a, b, c; %>
<%! Circle a = new Circle(2.0); %>
JSP Expression:
<%= expression %>
<html>
<head>
<title>A Comment Test</title></head>
<body>
<p> Today's date: <%= (new
java.util.Date()).toLocaleString()%> </p>
</body> </html>
Today's date: 21-Sep-2015 21:24:25
JSP Comments:
<%-- This is JSP comment --%>
<html>
<head>
<title>A Comment test</title></head>
<body>
<h2>A Test of Comments</h2>
<%-- This comment will not be visible in
the page source --%>
</body>
</html>
JSP Directives:
<%@ directive attribute="value"
%>
<%@ page ... %>Defines page-
dependent attributes, such as
scripting language, error page, and
buffering requirements.
<%@ include ... %>Includes a file
during the translation phase.
<%@ taglib ... %>Declares a tag
library, containing custom actions,
used in the page
JSP Actions:
<jsp:action_name attribute="value" />
jsp:include Includes a file at the time the page is
requested
jsp:useBean Finds or instantiates a JavaBean
jsp:setProperty Sets the property of a JavaBean
jsp:getProperty Inserts the property of a
JavaBean into the output
jsp:forward Forwards the requester to a new page
jsp:plugin Generates browser-specific code that
makes an OBJECT or EMBED tag for the Java
plugin
jsp:element Defines XML elements dynamically.
jsp:attribute Defines dynamically defined XML
element's attribute.
jsp:body Defines dynamically defined XML
element's body.
jsp:text Use to write template text in JSP pages
and documents.
JSP Implicit Objects:
request This is the HttpServletRequest object
associated with the request.
response This is the HttpServletResponse object
associated with the response to the client.
out This is the PrintWriter object used to send output to
the client.
session This is the HttpSession object associated with
the request.
application This is the ServletContext object associated
with application context.
config This is the ServletConfig object associated with
the page.
pageContext This encapsulates use of server-specific
features like higher performance JspWriters.
page This is simply a synonym for this, and is used to
call the methods defined by the translated servlet class.
Exception The Exception object allows the exception
data to be accessed by designated JSP.
Простой проект с xml-базой
данных и jsp
Database in xml-file
Web&java. jsp
Web&java. jsp
Web&java. jsp
Web&java. jsp
Web&java. jsp
Result
Link on project
https://sourceforge.net/p/jspexamplelogin/code/
Literature
http://www.javatpoint.com/login-form-in-jsp#
http://java-course.ru/student/book1/jsp/
http://www.tutorialspoint.com/jsp/jsp_syntax.htm
http://www.codenet.ru/webmast/java/jsp.php

More Related Content

What's hot (19)

PPTX
Jsp & struts
Hansi Thenuwara
 
PDF
Ch. 9 jsp standard tag library
Manolis Vavalis
 
PPTX
Internet and Web Technology (CLASS-10) [Node.js] | NIC/NIELIT Web Technology
Ayes Chinmay
 
PPT
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
JavaEE Trainers
 
PPTX
MVC Frameworks for building PHP Web Applications
Vforce Infotech
 
PPTX
Getting Started with Angular JS
Akshay Mathur
 
PPT
J Query
ravinxg
 
PDF
Ch. 7 beeing a jsp
Manolis Vavalis
 
PPTX
Jsp , javasportal, jsp basic,
rupendra1817
 
PDF
Intro to Javascript and jQuery
Shawn Calvert
 
PPTX
Learning jsp
mustafacse2009
 
DOCX
Built in filters
Brajesh Yadav
 
PDF
Utilization of zend an ultimate alternate for intense data processing
Career at Elsner
 
DOCX
Filters in AngularJS
Brajesh Yadav
 
PPTX
JSP
Pratik Vipul
 
PPTX
JavaScript and jQuery Basics
Kaloyan Kosev
 
PDF
Intro to jQuery
Shawn Calvert
 
DOCX
Controller in AngularJS
Brajesh Yadav
 
PPTX
4. jsp
AnusAhmad
 
Jsp & struts
Hansi Thenuwara
 
Ch. 9 jsp standard tag library
Manolis Vavalis
 
Internet and Web Technology (CLASS-10) [Node.js] | NIC/NIELIT Web Technology
Ayes Chinmay
 
Servlet/JSP course chapter 2: Introduction to JavaServer Pages (JSP)
JavaEE Trainers
 
MVC Frameworks for building PHP Web Applications
Vforce Infotech
 
Getting Started with Angular JS
Akshay Mathur
 
J Query
ravinxg
 
Ch. 7 beeing a jsp
Manolis Vavalis
 
Jsp , javasportal, jsp basic,
rupendra1817
 
Intro to Javascript and jQuery
Shawn Calvert
 
Learning jsp
mustafacse2009
 
Built in filters
Brajesh Yadav
 
Utilization of zend an ultimate alternate for intense data processing
Career at Elsner
 
Filters in AngularJS
Brajesh Yadav
 
JavaScript and jQuery Basics
Kaloyan Kosev
 
Intro to jQuery
Shawn Calvert
 
Controller in AngularJS
Brajesh Yadav
 
4. jsp
AnusAhmad
 

Viewers also liked (20)

PPT
Java fx for interface
Asya Dudnik
 
PPT
Web&java.jsf.
Asya Dudnik
 
PDF
Data bases in pictures
Asya Dudnik
 
PPT
Hibernate&ejb3 . part3.
Asya Dudnik
 
PPT
Web&java. gwt
Asya Dudnik
 
PPT
Work with my_sql_-_database_in_java
Asya Dudnik
 
PPT
Java fx for interface
Asya Dudnik
 
PPT
Work with my sql database in java
Asya Dudnik
 
PPT
Web&java. jsp
Asya Dudnik
 
PPT
использование Hibernate java persistence.part 4.
Asya Dudnik
 
PPT
Java.fundamentals
Asya Dudnik
 
PPT
MVC CTPP
seemonoff
 
PPTX
Get started with docker &amp; dev ops
Asya Dudnik
 
PPT
Apache maven in java projects
Asya Dudnik
 
PPT
Java.fundamentals
Asya Dudnik
 
PPT
Oracle database
Asya Dudnik
 
PPT
Work with xml in java
Asya Dudnik
 
PPTX
Get started with docker &amp; dev ops
Asya Dudnik
 
PPT
использование Hibernate java persistence.part 2.
Asya Dudnik
 
PPT
Jdbc in java
Asya Dudnik
 
Java fx for interface
Asya Dudnik
 
Web&java.jsf.
Asya Dudnik
 
Data bases in pictures
Asya Dudnik
 
Hibernate&ejb3 . part3.
Asya Dudnik
 
Web&java. gwt
Asya Dudnik
 
Work with my_sql_-_database_in_java
Asya Dudnik
 
Java fx for interface
Asya Dudnik
 
Work with my sql database in java
Asya Dudnik
 
Web&java. jsp
Asya Dudnik
 
использование Hibernate java persistence.part 4.
Asya Dudnik
 
Java.fundamentals
Asya Dudnik
 
MVC CTPP
seemonoff
 
Get started with docker &amp; dev ops
Asya Dudnik
 
Apache maven in java projects
Asya Dudnik
 
Java.fundamentals
Asya Dudnik
 
Oracle database
Asya Dudnik
 
Work with xml in java
Asya Dudnik
 
Get started with docker &amp; dev ops
Asya Dudnik
 
использование Hibernate java persistence.part 2.
Asya Dudnik
 
Jdbc in java
Asya Dudnik
 
Ad

Similar to Web&java. jsp (20)

PPTX
JSP.pptx
NishaRohit6
 
DOCX
Java server pages
Abhishek Kesharwani
 
PPTX
Java Server Pages
Shah Nawaz Bhurt
 
PPT
JSP 1.pptdfdfdfdsfdsfdsfdsfdsgdgdgdgdgdd
zmulani8
 
PDF
JavaServer Pages
Abdalla Mahmoud
 
PPTX
Web programming-Introduction to JSP.pptx
mcjaya2024
 
PPTX
WT Unit-Vuufvmjn dissimilating Dunkirk k
asta9578
 
PPTX
JSP - Java Server Page
Vipin Yadav
 
PPTX
JSP AND XML USING JAVA WITH GET AND POST METHODS
bharathiv53
 
PPTX
C:\fakepath\jsp01
Subhasis Nayak
 
PPTX
Introduction - Java Server Programming (JSP)
PadmavathiKPSGCAS
 
PPTX
Jsp
Pooja Verma
 
PPTX
Jsp basic
Jaya Kumari
 
PPTX
JavaScript, often abbreviated as JS, is a programming language and core techn...
MathivananP4
 
PPT
Jsp sasidhar
Sasidhar Kothuru
 
DOCX
Unit 4 1 web technology uptu
Abhishek Kesharwani
 
DOCX
Unit 4 web technology uptu
Abhishek Kesharwani
 
PDF
Java Server Pages
Eleonora Ciceri
 
PDF
Jsp tutorial
siddhesh2466
 
PPT
Jsp 01
Subhasis Nayak
 
JSP.pptx
NishaRohit6
 
Java server pages
Abhishek Kesharwani
 
Java Server Pages
Shah Nawaz Bhurt
 
JSP 1.pptdfdfdfdsfdsfdsfdsfdsgdgdgdgdgdd
zmulani8
 
JavaServer Pages
Abdalla Mahmoud
 
Web programming-Introduction to JSP.pptx
mcjaya2024
 
WT Unit-Vuufvmjn dissimilating Dunkirk k
asta9578
 
JSP - Java Server Page
Vipin Yadav
 
JSP AND XML USING JAVA WITH GET AND POST METHODS
bharathiv53
 
C:\fakepath\jsp01
Subhasis Nayak
 
Introduction - Java Server Programming (JSP)
PadmavathiKPSGCAS
 
Jsp basic
Jaya Kumari
 
JavaScript, often abbreviated as JS, is a programming language and core techn...
MathivananP4
 
Jsp sasidhar
Sasidhar Kothuru
 
Unit 4 1 web technology uptu
Abhishek Kesharwani
 
Unit 4 web technology uptu
Abhishek Kesharwani
 
Java Server Pages
Eleonora Ciceri
 
Jsp tutorial
siddhesh2466
 
Ad

More from Asya Dudnik (7)

PPT
Threads in java
Asya Dudnik
 
PPT
Ejb in java. part 1.
Asya Dudnik
 
PPT
Work with xml in java
Asya Dudnik
 
PPT
использование Hibernate java persistence.part 1.
Asya Dudnik
 
PPT
Usage concurrence in java
Asya Dudnik
 
PPT
Work with UML
Asya Dudnik
 
PPT
Spring in java
Asya Dudnik
 
Threads in java
Asya Dudnik
 
Ejb in java. part 1.
Asya Dudnik
 
Work with xml in java
Asya Dudnik
 
использование Hibernate java persistence.part 1.
Asya Dudnik
 
Usage concurrence in java
Asya Dudnik
 
Work with UML
Asya Dudnik
 
Spring in java
Asya Dudnik
 

Recently uploaded (20)

PPTX
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PDF
BÀI TẬP BỔ TRỢ THEO LESSON TIẾNG ANH - I-LEARN SMART WORLD 7 - CẢ NĂM - CÓ ĐÁ...
Nguyen Thanh Tu Collection
 
PPSX
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
PPTX
How to Configure Lost Reasons in Odoo 18 CRM
Celine George
 
PDF
CHILD RIGHTS AND PROTECTION QUESTION BANK
Dr Raja Mohammed T
 
PPTX
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
community health nursing question paper 2.pdf
Prince kumar
 
PPSX
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
PPT
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PDF
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PDF
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
PPTX
Capitol Doctoral Presentation -July 2025.pptx
CapitolTechU
 
PDF
Zoology (Animal Physiology) practical Manual
raviralanaresh2
 
PPTX
Gall bladder, Small intestine and Large intestine.pptx
rekhapositivity
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
BÀI TẬP BỔ TRỢ THEO LESSON TIẾNG ANH - I-LEARN SMART WORLD 7 - CẢ NĂM - CÓ ĐÁ...
Nguyen Thanh Tu Collection
 
Health Planning in india - Unit 03 - CHN 2 - GNM 3RD YEAR.ppsx
Priyanshu Anand
 
How to Configure Lost Reasons in Odoo 18 CRM
Celine George
 
CHILD RIGHTS AND PROTECTION QUESTION BANK
Dr Raja Mohammed T
 
Pyhton with Mysql to perform CRUD operations.pptx
Ramakrishna Reddy Bijjam
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
community health nursing question paper 2.pdf
Prince kumar
 
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
Talk on Critical Theory, Part One, Philosophy of Social Sciences
Soraj Hongladarom
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
CEREBRAL PALSY: NURSING MANAGEMENT .pdf
PRADEEP ABOTHU
 
Capitol Doctoral Presentation -July 2025.pptx
CapitolTechU
 
Zoology (Animal Physiology) practical Manual
raviralanaresh2
 
Gall bladder, Small intestine and Large intestine.pptx
rekhapositivity
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 

Web&java. jsp