Sunday, 28 June 2015

OCEJWCD.- 8.Developing JSP pages using custom tags (part 2)

OCEJWCD (SCWCD) - 1Z0-899 - Web Component Developer Certification
8.4.Write JSP code using several standard tags.

In the previous sections we have reviewed the uses of standard tags. There is the option of defining custom tags, when JSTL and standard actions are not enough.

-Using tag files ( implement tag functionality in a JSP)
-Using tag handlers (implement tag functionality in java class)
  -Simple
  -Classic (previous to JSP2.0)

Example of tagFile:
<%@ tag language="java" pageEncoding="ISO-8859-1"%>
<input type="submit" value="ACCEPT"/>
view raw ExampleTag.tag hosted with ❤ by GitHub

Example of simple tag handler:

- Class that extends SimpleTagSupport and override doTag() method:
package example;
import javax.servlet.jsp.tagext.SimpleTagSupport;
import java.io.IOException;
import javax.servlet.jsp.JspException;
public class SimpleTagExample extends SimpleTagSupport {
public void doTag() throws JspException, IOException{
getJspBody().invoke(null);
}
}

- Create TLD for the tag:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<taglib>
<tlib-version>1.2</tlib-version>
<jsp-version>2.0</jsp-version>
<shortname>x</shortname>
<uri>simpleTag</uri>
<tag>
<name>addText</name>
<tag-class>example.SimpleTagExample</tag-class>
<body-content>scriptless</body-content>
</tag>
</taglib>



- Use the tags in a JSP:

see the tag file in directive:  <%@ taglib prefix="myTag" tagdir="/WEB-INF/tags" %>
and tag handler in directive: <%@ taglib prefix="simple" uri="simpleTag" %>

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
<%@ taglib prefix="myTag" tagdir="/WEB-INF/tags" %>
<%@ taglib prefix="simple" uri="simpleTag" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Fruit selection</title>
<style>
p {
border:1px solid grey;
padding:10px;
margin:30px;
}
</style>
</head>
<body>
<p>
Please, select one fruit from the list
<select id="list">
<c:forEach items="${fruitList}" var="fruit">
<option value="${fruit}">
${fruit}
</option>
</c:forEach>
</select>
<myTag:ExampleTag/>
<simple:addText>
</br>Only season fruit
<input type="checkbox" value="season"/>
</simple:addText>
</p>
</body>
</html>
view raw Selection.jsp hosted with ❤ by GitHub

Results:
In the example the tag file includes a button and the tag handler adds line with text and a checkbox.

8.5.List capabilities of JSTL tags.

  • JSTL encapsulates, as simple tags, core functionality common to many JSP applications. A single tag and can be used on multiple JSP containers.
  • JSTL provides support for core iteration and control-flow features, text inclusion, internationalizaton-capable formatting tags, and XML-manipulation tags.
  • JSTL extensibility mechanisms: a framework for integrating custom tags with JSTL tags.

OCEJWCD (SCWCD) - 1Z0-899 - Web Component Developer Certification

Monday, 22 June 2015

OCEJWCD.- 8.Developing JSP pages using custom tags (part1)

OCEJWCD (SCWCD) - 1Z0-899 - Web Component Developer Certification
8.1.Relate the JSTL to common job roles in web application development and understand the use of tags in JSP developments.

The Java Standard Tag Library is a collection of standard custom tags
JSTL have a set of libraries:
- Core library
- Formatting library
- XML library
- SQL library

8.2.Recognize correct syntax for tags.

  • To escape XML or set to default and attribute
<c:out value="${message} escapeXml="true"/>
<c:out value="${user} default ="usuario1" />
  • Looping
<c:forEach var="item" items="${itemList}">
  ${item}
</c:out>
  • Conditions
<c:if test=${number eq 5}>
  Condition 1 displayed
</c:if>
  • Nested conditions
<c:choose>
  <c:when test....
  </c:when>
  <c:otherwise>
  </c:otherwise>
</c:choose>
  • set variable in a scope or a bean/map attribute:
<c:set var="name" scope="session" value="user1"/> 
*by default page scope
<c:set target="${beanPerson}" property="name" value="user1"/>
*if the bean is null throws an exception


  • include content dynamically that can be external to the container
<c:import url="....>
  • url rewriting and encoding
<c:url value="input.jsp" var="inputURL">
  <c:param name="name" value="${name}"/>
</c:url>
8.3.Configure a JSP to use tags from the JSTL.

At application level the files: jstl.jar and standard.jar should be in WEB-INF/lib directory.

In the JSP the following declaration should exist to use JSTL: taglib directive

<%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>

See an example in post ocejwcd-6-more-view-facilities in section  6.5

OCEJWCD (SCWCD) - 1Z0-899 - Web Component Developer Certification