Presentation is loading. Please wait.

Presentation is loading. Please wait.

Object-Oriented Enterprise Application Development JavaServer Pages.

Similar presentations


Presentation on theme: "Object-Oriented Enterprise Application Development JavaServer Pages."— Presentation transcript:

1 Object-Oriented Enterprise Application Development JavaServer Pages

2 Topics During this class we will examine: Anatomy of a JavaServer Page Merging markup with Java Configuring our JSPs with directives Integrating servlets and JSPs

3 JavaServer Pages

4 Justification JavaServer Pages (JSPs) are a technology that allow developers to mix static with dynamic content. JavaServer Pages have been successful for two (2) reasons: JSPs are supported across multiple platforms. JSPs give developers access to all Java technologies instead of using a scripting language.

5 Roles and Responsibilities Although servlets can generate dynamic content, it's often advantageous to separate the business logic in the servlet from the presentation logic. By using JSPs we can have application programmers building servlets while content designers and graphic artists construct the JSPs.

6 Versions We'll use version 1.1 of the JavaServer Pages specification. The 1.0 and 1.1 version JSPs are almost totally incompatible with the 0.92 version of the specification.

7 JSP Structure

8 Basic Concepts At their heart, basic JSPs look just like regular HTML markup. A static HTML document can be turned into a JSP simply by changing its extension to.jsp. The key difference is that JSPs are dynamic. When a JSP is executed, the JSP engine converts that JSP into an equivalent servlet which then follows the normal lifecycle.

9 Sample Code - HelloWorld 1. 2. 3. 4. 5. HelloWorld JSP 6. 7. 8. Hello, World! 9. 10.

10 Dynamic Content If all we needed was static content, then we'd just use HTML. The strength of JSPs lie in their ability to generate and manipulate dynamic content. There are three common ways of performing this generation using JSPs: Expressions, Scriptlets Declarations

11 Lifecycle Even though JSPs are ultimately compiled into servlets, there are a few differences in their lifecycle. Most of the tags for generating dynamic content are placed within the JSP's jservice() method. This method is called by the JSP's service() method for both GET and POST requests.

12 JSP Tags

13 Basic Tags In the 0.92 version of the JSP specification, we identified dynamic content using special tags. In version 1.1 of the JSP specification we can still use some of these tags. We can also use equivalent XML tags.

14 JSP Expressions The simplest form of dynamic content is the JSP expression. This is used to send a value back to the client. The tag format of an expression is given by:

15 Sample Code - DynamicHelloWorld 1. 2. 3. 4. DynamicHelloWorld JSP 5. 6. 7. Hello, World! 8. It’s now 9. 10. 11. 12.

16 Implicit Variables (1 of 3) There are eight (8) implicit variables for each JSP. The four (4) most common are: request : The HttpServletRequest object passed to the JSP. response : The HttpServletResponse object passed to the JSP. session : The client's HttpSession object. out : The PrintWriter object used to send output to the client that initiated the request.

17 Implicit Variables (2 of 3) Other useful variables include: application : The ServletContext object. config : The ServletConfig object. pageContect : The PageContext object. page : The this object (not currently used).

18 Implicit Variables (3 of 3) These implicit variable can be used within JSP expressions and scriptlets, but not within JSP declarations.

19 Sample Code – Status (1 of 2) 1. 2. 3. 4. StatusHelloWorld JSP 5. 6. 7. Hello, World! 8. Current Time: 9. 10. 11. Session ID: 12. 13.

20 Sample Code – Status (2 of 2) 14. Hostname: 15. 16. 17. Parameter: 18. 19. 20. 21.

21 JSP Scriptlets Often a single expression isn't adequate for the complexity of the output we want the JSP to generate. JSPs allow us to embed complete segments of Java code within a scriptlet. The tag format of a scriptlet is given by:

22 Sample Code – Scriptlet (1 of 2) 1. 2. 3. 4. Scriptlet JSP 5. 6. 7. Hello, World! 8. Current Time: 9. 10. 11. Session ID: 12. 13.

23 Sample Code – Scriptlet (2 of 2) 14. Hostname: 15. 16. 17. <% 18. String testString = request.getParameter("test"); 19. if (null == testString) { 20. testString = "no.such.parameter"; 21. } 22. %> 23. Parameter: 24. 25.

24 Conditional Tags JSP scriptlets are useful for including conditional content. This cuts down on the amount of data returned to the client. This technique can be used to implement basic security features.

25 Sample Code – Scriptlet (rev.) (1 of 3) 1. 2. 3. 4. Scriptlet JSP 5. 6. 7. Hello, World! 8. Current Time: 9. 10.

26 Sample Code – Scriptlet (rev.) (2 of 3) 11. <% 12. if (session.getId() != null) { 13. %> 14. Session ID: 15. 16. 17. <% 18. } 19. %> 20. Hostname: 21. 22.

27 Sample Code – Scriptlet (rev.) (3 of 3) 23. <% 24. String testString = request.getParameter("test"); 25. if (null == testString) { 26. testString = "no.such.parameter"; 27. } 28. %> 29. Parameter: 30. 31. 32. 33.

28 Translated Code – Scriptlet (1 of 8) 1.import javax.servlet.*; 2.import javax.servlet.http.*; 3.import javax.servlet.jsp.*; 4.import javax.servlet.jsp.tagext.*; 5.import java.io.PrintWriter; 6.import java.io.IOException; 7.import java.io.FileInputStream; 8.import java.io.ObjectInputStream; 9.import java.util.Vector; 10.import org.apache.jasper.runtime.*; 11.import java.beans.*; 12.import org.apache.jasper.JasperException;

29 Translated Code – Scriptlet (2 of 8) 13.public class _0002fHtml_0002fscriptlet_0002ejspscriptlet_j sp_0 extends HttpJspBase { 14.static { } 15.public _0002fHtml_0002fscriptlet_0002ejspscriptlet_j sp_0( ) { } 16.private static boolean _jspx_inited = false; 17.public final void _jspx_init() throws JasperException { }

30 Translated Code – Scriptlet (3 of 8) 18.public void _jspService( HttpServletRequest request, HttpServletResponse response) 19.throws IOException, ServletException { 20. JspFactory _jspxFactory = null; 21. PageContext pageContext = null; 22. HttpSession session = null; 23. ServletContext application = null; 24. ServletConfig config = null; 25. JspWriter out = null; 26. Object page = this; 27. String _value = null;

31 Translated Code – Scriptlet (4 of 8) 28. try { 29. if (_jspx_inited == false) { 30. _jspx_init(); 31. _jspx_inited = true; 32. } 33. _jspxFactory = JspFactory.getDefaultFactory(); 34. response.setContentType( 35. "text/html;charset=8859_1"); 36. pageContext = _jspxFactory.getPageContext( this, request, response, "", true, 8192, true);

32 Translated Code – Scriptlet (5 of 8) 37. application = pageContext.getServletContext(); 38. config = pageContext.getServletConfig(); 39. session = pageContext.getSession(); 40. out = pageContext.getOut(); 41. out.write(" \r\n \r\n \r\n Scriptlet JSP \r\n \r\n \r\n\t\t\t Hello, World! \t \r\n\t\t\t Current Time: ");

33 Translated Code – Scriptlet (6 of 8) 42. out.print( new java.util.Date() ); 43. out.write(" \r\n\t\t\t"- \r\n\t\t\t"); 44. if (session.getId() != null) { 45. out.write("\r\n\t\t\t\t "- Session ID: "); 46. out.print( session.getId() ); 47. out.write(" \r\n\t\t\t"); 48. } 49. out.write("\r\n\t\t\t "- Hostname: "); 50. out.print( request.getRemoteHost() ); 51. out.write(" \r\n\t\t\t");

34 Translated Code – Scriptlet (7 of 8) 52. String testString = request.getParameter("test"); 53. if (null == testString) { 54. testString = "no.such.parameter"; 55. } 56. out.write("\r\n\t\t\t "- Parameter: "); 57. out.print( testString ); 58. out.write(" \r\n\t "- \r\n ");

35 Translated Code – Scriptlet (8 of 8) 59. } catch (Exception ex) { 60. if (out.getBufferSize() != 0) 61. out.clearBuffer(); 62. pageContext. handlePageException(ex); 63. } finally { 64. out.flush(); 65. _jspxFactory. releasePageContext(pageContext); 66. } 67.} 68.}

36 JSP Declarations A JSP declaration exists outside of the jservice() method. This means that code in a declaration cannot make use of the implicit variables. This allows us to declare JSP-level variables and methods. The tag format of an expression is given by:

37 Sample Code – Declaration (1 of 2) 1. 2. 3. 4. Declaration JSP 5. 6. 7. Declarations 8. Current Time: 9. 10. 11. Session ID: 12. 13.

38 Sample Code – Declaration (2 of 2) 14. Hostname: 15. 16. 17. 18. 19. 20. Accesses to the page since JSP was loaded. 21. 22. 23.

39 JSP Directives

40 Overview We use directives to customize the JSP's behavior. Each directive affects the structure of the servlet resulting from the JSP's compilation. There are three (3) types of directives: page: Controls the servlet's structure. include: Inserts a file into the servlet class. taglib: Defines custom markup tags.

41 Page Directives There are many page directives. We'll look at a few of the most common attributes: import isThreadSafe session errorPage We use the directive tag to indicate that we want a directive to take effect:

42 Import Attribute The import attribute allows a JSP to import class libraries: By default a JSP automatically imports: java.lang.* java.servlet.* java.servlet.http.* java.servlet.jsp.*

43 Sample Code - Import 1. 2. 3. 4. 5. Import JSP 6. 7. 8. Imports 9. Current Time: 10. 11. 12. 13.

44 isThreadSafe Attribute The isThreadSafe attribute forces the JSP's servlet to implement the SingleThreadedModel interface: By default a JSP is assumed to be thread safe in the same way that servlets are. If this isn't the case you can: Make it thread-safe using synchronized blocks Set isThreadSafe to false.

45 Sample Code – IsThreadSafe (1 of 2) 1. 2.<% 3. String userId = "id" + id; 4. out.println("Your id is " + id); 5. id++; 6.%>

46 Sample Code – IsThreadSafe (2 of 2) 1. 2.<% 3. synchronized (this) { 4. String userId = "id" + id; 5. out.println("Your id is " + id); 6. id++; 7. } 8.%>

47 Sample Code - IsThreadSafe 1. 2. 3. 4. 5. 6. Single Thread JSP 7. 8. 9. 10. 11. Accesses since JSP was loaded. 12. 13.

48 Session Attribute The session attribute controls whether or not the JSP can access the client's session: By default a JSP participates in the client's session. If this isn't the behavior we want, we can turn it off:

49 errorPage Attribute The errorPage attribute specifies the URL to which the client will be sent if an unhandled exception is encountered: The exception that caused the problem will be provided to the page via the exception variable.

50 Sample Code - ErrorPage 1. 2. 3. 4. 5. ErrorPage JSP 6. 7. 8. Session Variable: 9. <%= 10. session. 11. getAttribute("var").toString() 12. %> 13. 14.

51 Integrating Servlets and JavaServer Pages

52 Integration JavaServer Pages allow graphic designers to achieve reasonable separation between their roles and the role of the servlet developer. However, since all of these components will be used together in the final application, we need to integrate them.

53 Request Dispatcher We've already looked at one approach to integrating servlets and JSPs: the RequestDispatcher class. This remains the simplest way of invoking a JSP from a servlet.

54 Shared Data It isn't uncommon to need to share data between a servlet and a JSP. The servlet may perform all of the business processing necessary to generate the data to be displayed by the JSP. We could use the client's session, but what if the data isn't required beyond a single request-response pair?

55 Request Attributes (1 of 2) For data that needs to exist only for a single client request, we can use the HttpServletRequest object to store our data. In addition to the parameters passed in by the client, the HttpServletRequest contains attributes which can be set by servlets and JSPs.

56 Request Attributes (2 of 2) As with session attributes, request attributes are nothing more than a name-value pair. To manipulate these attributes you can use the following methods: public void setAttribute(String, Object) public Object getAttribute(String)

57 Sample Code – SetData (1 of 3) 1.import java.io.*; 2.import java.util.*; 3.import javax.servlet.*; 4.import javax.servlet.http.*; 5.public class SendData 6.extends HttpServlet { 7.public void doPost(HttpServletRequest rqst, HttpServletResponse resp) 8.throws ServletException, IOException { 9. doGet(rqst, resp); 10.}

58 Sample Code – SetData (2 of 3) 11.public void doGet(HttpServletRequest rqst, HttpServletResponse resp) 12.throws ServletException, IOException { 13. rqst.setAttribute("parm", "skippy"); 14. chain(rqst, resp, "GetData.jsp"); 15.}

59 Sample Code – SetData (3 of 3) 16.private void chain(HttpServletRequest rqst, HttpServletResponse resp, String URL) 17.throws ServletException, IOException { 18. RequestDispatcher dispatcher = getServletContext(). getRequestDispatcher(URL); 19. dispatcher.forward(rqst, resp); 20.} 21.}

60 Sample Code - GetData 1. 2. 3. 4. GetData JSP 5. 6. 7. Get Shared Value 8. The shared value is... 9. 10. 11. 12.

61 Review During this class we have discussed: Anatomy of a JavaServer Page Merging markup with Java Configuring our JSPs with directives Integrating servlets and JSPs

62 Resources Core Servlets and JavaServer Pages Marty Hall, Prentice-Hall, Inc., 2000. ISBN: 0-13-089340-4 Java 2 Platform, Enterprise Edition B. Shannon, et al., Addison-Wesley, 2000. ISBN: 0-201-70456-0

63 Coming Attractions Next week we'll add custom tags to our JavaServer Pages. Please read Chapter 14 in your text.


Download ppt "Object-Oriented Enterprise Application Development JavaServer Pages."

Similar presentations


Ads by Google