이 콘텐츠는 선택한 언어로 제공되지 않습니다.
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"})
@Filter(around={"seamComponent", "otherSeamComponent"})
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that this filter is positioned higher in the stack than the given filters.@Filter(within={"seamComponent", "otherSeamComponent"})
@Filter(within={"seamComponent", "otherSeamComponent"})
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specifies that this filter is positioned deeper in the stack than the given filters.