SEC-455: Added note on including taglib declaration in JSPs.

This commit is contained in:
Luke Taylor 2007-11-07 00:46:04 +00:00
parent 8abcbd77d9
commit a954274037
1 changed files with 9 additions and 2 deletions

View File

@ -1404,7 +1404,14 @@ if (obj instanceof UserDetails) {
<para>Now that you've configured the tag libraries, refer to the <para>Now that you've configured the tag libraries, refer to the
individual reference guide sections for details on how to use individual reference guide sections for details on how to use
them.</para> them. Note that when using the tags, you should include the
taglib reference in your JSP:
<programlisting><![CDATA[
<%@ taglib prefix='authz' uri='http://acegisecurity.org/authz' %>
]]>
</programlisting>
</para>
</sect1> </sect1>
</chapter> </chapter>
</part> </part>