Presentation is loading. Please wait.

Presentation is loading. Please wait.

Intermediate JSP Matt Wheeler. Notes This is a training NOT a presentation If you have questions please ask them Prerequisites – Introduction to Java.

Similar presentations


Presentation on theme: "Intermediate JSP Matt Wheeler. Notes This is a training NOT a presentation If you have questions please ask them Prerequisites – Introduction to Java."— Presentation transcript:

1 Intermediate JSP Matt Wheeler

2 Notes This is a training NOT a presentation If you have questions please ask them Prerequisites – Introduction to Java Stack – Basic Java and XML skills – Introduction to JSP – Installed LDSTech IDE (or other equivalent)

3 Overview Review Scriptlets Expressions Expression Language (EL) Taglibs (JSTL, Spring, Stack) Custom taglibs Functions Templating

4 Review Scriptlets Expressions …

5 Scriptlets Scriptlets are code in a JSP page (delimited with ) Will be compiled into the service method of the resulting servlet Lets look at a simple example <% String user = request.getAttribute(“loggedInUser”); if (user != null) { %> Welcome <% } %>

6 Expressions Like scriptlets but evaluate a singular Java expression and return the result Result must be a String or convertible to a String – The syntax is as follows: For example: <% String user= request.getAttribute(“loggedInUser”); if (user != null) { %> Welcome <% } %>

7 Disadvantages Maintenance, maintenance, maintenance – Difficult to read – Difficult to understand Not testable Not reusable Difficult to refactor Tightly coupled UI and back end code The long version can be found here: – http://www.javaranch.com/journal/200603/Journal2 00603.jsp#a5

8 Expression Language (EL) The expression language is meant to provide easy access within a JSP page to application data/logic in JavaBeans EL is really the bridge between the model and the view and allows for separation of concerns For detailed information on the JSP EL please see: http://download.oracle.com/javaee/6/tutorial/ doc/gjddd.html

9 EL (continued) Use of EL will help mitigate too much logic in JSP pages EL allows access to properties and attributes of: – JavaBeans – Collections – Implicit objects //accessing a JavaBean ${someBean} ${someBean.someProperty} //accessing a value of a map with key of someKey ${someBean.map['someKey']} //accessing an implicit object (request) ${request.param}

10 EL (JavaBeans) EL looks for a specified bean in all scopes (request, session, application) to resolve the expression – ${someBean.whatever} After a bean/resource named someBean is found EL attempts to access the whatever property of the bean public class SomeBean { private String whatever; public String getWhatever() { return this.whatever; } public void setWhatever(String whatever) { this.whatever = whatever; }

11 EL (Collections) EL provides special syntax for accessing items in lists or maps List properties can be accessed with array notation Map items can be accessed with map or dot notation ${someBean.someList[0]} //access the first item in the list ${someBean.someMap['key']} //access the item in the map with key of 'key' ${someBean.someMap.key} //equivalently use dot notation for the same result

12 EL (Implicit Objects) Objects exposed for reference in EL without any extra work or configuration from the developer Some of these objects include: – pageContext, request, session, application, pageScope, requestScope, sessionScope, applicationScope, param, paramValues, header, headerValues, cookie, cookies, initParam, exception ${requestScope['nameOfSubmitted']} //extracts value for attribute of given name ${param['nameOfRequestParam']} //gets value off the url for the given name ${header['Accept-Language']} //find value for header with name Accept-Language ${initParam['paramName']} //gets the value of the initParam with name paramName ${pageContext.request.servletPath} //gets the servlet path from the request

13 EL (operators) While most of the view logic will be in JavaBeans, EL allows for limited logic in the view EL provides some basic operators – Logical: &&, ||, !, and, or not – Comparison: ==, !=,, =, eq, ne, lt, gt, ge, le – Conditional (turnary): test ? result1 : result2 – Arithmetic: +, -, *, /, div, %, mod, E – Empty: empty, null For operator precedence, please see: http://download.oracle.com/javaee/6/tutorial/doc/ bnaik.html

14 EL (operators) Some examples ${someBean.administrator && someBean.owner} ${someBean.count > 0} ${someBean.count + 1 % 2} ${someBean.count *.1 gt 50 && (someBean.payTaxes || someBean.goToJail)} ${4.0 eq (3 + 1)/1} ${someBean.map['someKey']}

15 EL (Evaluation) There are multiple implicit resolvers that attempt to handle EL expressions In general, say we are resolving ${someBean.abc} One of the EL resolvers will, grab the first portion someBean – Will look for an implicit object of that name – Will then look for a bean of that name – Once found, it will look for a property on that name or implicit object (abc) and get that value

16 Lab 1 https://tech.lds.org/wiki/Intermediate_JSP#Lab_1_ Expression_Language_.28EL.29

17 Taglibs Primary goal of taglibs it to provide reusable functionality – Through reusable tag elements – Through functions that extend EL Simplifies jsp pages making them more readable / maintainable by separating logic from the page’s presentation

18 Basic Usage Taglibs – Declare the namespace – Use the tag Functions – Declare the namespace – Use the function ${fn:join(array, ', ')}

19 What did these save us? Without the taglib <% String style = pageContext.getRequest().getAttributes(“exceptionStyle”); if (style == null || "".equals(style.trim())) { out.write(" } else { writer.write(" "); } if (pageContext.getException() == null) { out.write("No exception was available to print."); } else { pageContext.getException().printStackTrace(new PrintWriter(out)); } out.write(" "); %>

20 What did this save us? Without the function <%! public String join(String[] array, String separator) { if (array == null) return ""; if (separator == null) separator = ""; StringBuffer buf = new StringBuffer(); for (int i=0; i<array.length; i++) { buf.append(array[i]); if (i < array.length-1) buf.append(separator); } return buf.toString(); } %> <% String joined = join(someArray, “,”)); … %>

21 JSP Include Allows you to include static or dynamic resources in a JSP page – Facilitates reuse – Allows separation into manageable pieces – Two include mechanisms available in JSP

22 jsp:include Executes the included content and then includes the result in the containing JSP page //include.jsp Include me, include me! ${parentValue} //include-demo.jsp <% String parentValue = “Something spectial"; pageContext.setAttribute("parentValue", parentValue); %> //resulting output: Include me, include me!

23 @include (directive) Includes the content and then executes the page – Can depend on (or conflict) with variables in the containing page – Page takes a relative url //include.jsp Include me, include me! ${parentValue} //include-demo.jsp <% String parentValue = “Something special”; pageContext.setAttribute("parentValue", parentValue); %> //resulting output: Include me, include me! Something special

24 Additional info Also note that using the jsp:include, parameters can be passed to the included page as follows: For more info on jsp:include: http://java.sun.com/products/jsp/syntax/1.2/syntax ref1214.html For more info on @include: http://java.sun.com/products/jsp/syntax/1.2/syntax ref129.html#997991

25 Demo DEMO

26 Common Taglibs (JSTL) JavaServer Pages Standard Tag Library (JSTL) taglibs for many common web use cases – Core – Xml processing – Internationalization and formatting For more info: http://download.oracle.com/docs/cd/E17802_01 /products/products/jsp/jstl/1.1/docs/tlddocs/ind ex.html

27 Core Tags (c:out) c:out evaluates an expression and outputs it to the JspWriter – Allows you to provide a default

28 Core (conditionals) c:if – executes based on the result of the test attribute If / else equivalent (choose, when, otherwise) 2}"> Party time Display this if there are no results Display all of the results

29 Core (Looping and Iteration) c:forEach – loops over an array, Collection, Iterator, Enumeration, Map, String of comma separated values ${result.property1} ${result.property2}

30 Core (c:set) Facilitates scoped variable manipulation Sets the value of the given key in the given scope – Basically equivalent to: – Value can also be provided as the body content of the tag – If var is null (i.e. not specified – var="null" will set the attribute to the String "null") the value is removed Append confidential data

31 Core (c:set) - can also be used to set a property on a scoped object

32 Core (Urls) - Aids in constructing correctly formatted URLs with encoding applied - Often used in correlation with c:url to add query parameters to the url – Note that the name and value are URL encoded by default (more later) For example: Result would be something like: http://www.whatever.com/whatever.jsp?%26apathy=%26don'tcare&%40ignorance=%40d on'tknow;jsessionid=123456789

33 Core Internationalization and Formatting Taglib – Provides support for internationalization related functions such as: Locales, resource bundles, and base names Xml Processing Taglib – Provides support for basic xml processing as well as xml flow control and transformations

34 JSTL Functions fn:contains() fn:containsIgnoreCase() fn:endsWith() fn:escapeXml() fn:indexOf() fn:join() fn:length() fn:replace() fn:split() fn:startsWith() fn:substring() fn:substringAfter() fn:substringBefore() fn:toLowerCase() fn:toUpperCase() fn:trim() For more info: http://download.oracle.com/javaee/5/jstl/1.1/d ocs/tlddocs/

35 Other Useful Taglibs Spring taglibs – http://static.springsource.org/spring/docs/3.1.0.M1/ spring-framework-reference/html/spring.tld.html Stack Security taglib – JSP doesn’t defend against xss like JSF did (i.e. encode all output) – In JSF everything output with an h:outputText was encoded by default – In JSP you have to take special care to encode values that are displayed to avoid cross site scripting errors

36 XSS: The Problem In short, cross-site scripting is when user entered data executes as a script instead of being displayed as text For example: – Assume a page takes a parameter on the url and displays it – And then in your page, you put ${param.userInput} – Instead of showing on the page as text this will actually become a script in the page and be executed displaying an alert to the user – For more info: http://en.wikipedia.org/wiki/Cross- site_scripting http://whatever.com/?userInput= alert('You should encode this silly.');

37 XSS: Avoidance To avoid this, all output (especially user entered data) should be encoded before it is displayed Stack provides following encoding functions Or in code More comprehensive information: – https://tech.lds.org/wiki/Java_Stack_Security_%28Encoding%29_Tech_Tip – http://code.lds.org/maven-sites/stack/module.html?module=security- web/index.html ${ssw:encodeHtml(param.something)} ${ssw:encodeAttribute(param.something)} ${ssw:encodeJS(param.something)} EncodingUtils.encodeHtml(String input); EncodingUtils.encodeAttribute(String input); EncodingUtils.encodeJS(String input);

38 Other Stack Provided Taglibs Other taglibs – message-source – xsrfToken – display-exception

39 Lab 2 https://tech.lds.org/wiki/Intermediate_JSP#Lab_2_ Taglibs

40 Custom Taglibs Example As the page is being processed, the tag is read, mapped to the appropriate taglib handler, and processed Further note that hello maps to a tag class (org.lds.stack.whatever.web.HelloTag) that processes the tag

41 Associated tld file <taglib xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web- jsptaglibrary_2_1.xsd" version="2.1"> Tag library for stack security web. 1.0 http://code.lds.org/whatever/web Spits out hello. hello org.lds.stack.whatever.web.HelloTag empty Whether hello formal or informal formal false true

42 Taglib class (HelloTag) HelloTag public class HelloTag extends BodyTagSupport { private Boolean formal; public int doStartTag() throws JspException { try { if (formal) { String username = (String) ((HttpServletRequest) pageContext.getRequest()).getAttribute("currentUser"); pageContext.getOut().write("Good day to you " + username); } else { pageContext.getOut().write("Howdy Partner. "); } } catch (IOException e) { throw new JspException("Error: IOException while writing to client"); } return SKIP_BODY; } public void setFormal(Boolean formal) { this. formal = formal; }

43 Functions Sometimes a taglib might be overkill and all that is needed is some calculation or processing You may not want to embed that code in the page, particularly if it is reusable Accordingly EL functions allow you to call a static Java function to perform the processing

44 Functions (example) Suppose you have a class with static methods In a tld file define the function for use in JSP Then in the JSP page use the function as follows public class MiscUtils { public static String concat(String one, String two) { return one+two; } Concatenates two strings into one. concat org.lds.stack.web.util.MiscUtils java.lang.String concat( java.lang.String, java.lang.String ) Hello ${util:concat(param.firstName, param.lastName)}

45 Tag Files (Taglets) Simpler way to create taglibs Better for content driven tags as opposed to complex logic tags Tag files are not quite as powerful as the regular tag approach – However they are much simpler to create – For instance you cannot put a scriptlet in a taglet

46 Tag Files (Taglets) Basically you create a.tag file in WEB-INF/tags (or a subdirectory) – The container then makes it available as a JSP taglib It uses the name of the file as the tag name by default and the namespace points to a tagdir instead of a uri Lets re-create our hello tag using this approach

47 Tag Files (Taglets) We would create a file named hello.tag and place it in WEB-INF/tags (maybe put Hello! in it) – WEB-INF/tags/hello.tag And that is it, believe it or not, it is ready for use Hello!

48 Tag Files (Taglets) In out hello.tag file we can add an attribute as follows: Then you would add some logic to the tag (hello.tag): Good day ${request.currentUser} Howdy partner

49 Tag Files Now our new tag can be used as follows: Notice that the tag is really just a basic jsp file, but that you can customize with the attributes specified //or

50 Define a portion of the tag that can be overridden by the user of the tag – bodytest.tag This tag could be utilized as follows: Before body content After body content My body content My body content

51 This directive is only valid in a tag file Possible attributes – name – name by which to reference the attribute – required – whether or not an error should be thrown if the using tag does not specify this attribute – rtexprvalue – whether or not this attribute can take an EL (runtime) expression – type – specifies the runtime type of the attribute’s value – defaults to java.lang.String

52 – fragment - Whether this attribute is a fragment to be evaluated by the tag handler (true) or a normal attribute to be evaluated by the container prior to being passed to the tag handler If true do not specify the rtexprvalue as the container fixes it to true If true do not sepcify the type attribute as the container fixes it to javax.servlet.jsp.tagext.JspFragment Default value is false For more info: – http://java.sun.com/products/jsp/syntax/2.0/syntaxref20 8.html#997991

53 Attributes For example Utilize the attribute as follows: Some content More content My attribute content My body content <%-- Output would be: Some content My body content More content My attribute content --%>

54 In Review Tag FileClient File Entire body or and Some wonderful stuff and ${abc} Something

55 Templating Tag file – template.tag ${title}

56 Tag file usage Use tag file as a template – index.jsp How do you like me now?

57 Lab 3 https://tech.lds.org/wiki/Intermediate_JSP#Lab_3_ Custom_Taglibs

58 Credit where credit is due Oracle Pro JSP 2 – Simon Brown, Sam Dalton, Daniel Jepp, Dave Johnson, Sing Li, Matt Raible http://java.sun.com/products/jsp/syntax/2.0/syn taxref20.html http://www.javaranch.com


Download ppt "Intermediate JSP Matt Wheeler. Notes This is a training NOT a presentation If you have questions please ask them Prerequisites – Introduction to Java."

Similar presentations


Ads by Google