Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The JSP TLD is included in the struts-core.jar. To use, just include the usual red-tape at the top of your JSP.

he following to your JSP:

Code Block
xml
xml
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<html><body>
  <body>
    <p>Now you can use the tags, like so:</p>
    <s:iterator value="people">
      <s:property value="lastName"/>, <s:property value="firstName"/>
    </s:iterator>
    ...

Next: Freemarker