Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
29.13. Annotations for integrating with the Servlet container
These annotations allow you to integrate your Seam components with the Servlet container.
-
@Filter - When used to annotate a Seam component implementing
javax.servlet.Filter, designates that component as a servlet filter to be executed by Seam's master filter.@Filter(around={"seamComponent", "otherSeamComponent"})Specifies that this filter is positioned higher in the stack than the given filters.@Filter(within={"seamComponent", "otherSeamComponent"})Specifies that this filter is positioned deeper in the stack than the given filters.