Скачать презентацию
Идет загрузка презентации. Пожалуйста, подождите
Презентация была опубликована 9 лет назад пользователемOxana Dudnik
1 Java Server Pages(JSP)
3 JavaServer Pages (JSP) позволяют вам отделить динамическую часть ваших страниц от статического HTML. Вы, как обычно, пишете обычный код в HTML, используя для этого любую программу для создания Web страниц. Затем вы заключаете динамическую часть кода в специальные таги, большинство которых начинаются с " ".
4 Жизненный цикл jsp
5 First jsp Hello World Sample <% String name = request.getParameter("name"); if (name == null || name.length() == 0) { %> Hello, world ! <% } else { %> Hello, world ! I'm <% } %> Hello, world ! <% } else { %> Hello, world ! I'm <% } %>">
6 Структура каталога web-app в каталоге src.
7 Синтаксис jsp. The Scriptlet: Hello World Hello World!
8 JSP Declarations:
9 JSP Expression: A Comment Test Today's date: Today's date: 21-Sep :24:25
10 JSP Comments: A Comment test A Test of Comments
11 JSP Directives: Defines page- dependent attributes, such as scripting language, error page, and buffering requirements. Includes a file during the translation phase. Declares a tag library, containing custom actions, used in the page
12 JSP Actions: 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.
13 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.
14 Простой проект с xml-базой данных и jsp
15 Database in xml-file
21 Result
22 Link on project gin/code/HEAD/tree/
23 Literature in-jsp# course.ru/student/book1/jsp/ syntax.htm sp.php
Еще похожие презентации в нашем архиве:
© 2024 MyShared Inc.
All rights reserved.