ColdFusion tags provide equivalent features to most standard JSP tags. For example, the
cfapplet tag provides the same service as the jsp:plugin tag, and
cfobject tag lets you use JavaBeans, as does the jsp:usebean tag. Similarly, you do not use the jsp:getproperty tag because ColdFusion automatically gets properties when you reference them. Therefore, ColdFusion does not support the use of standard JSP tags directly.However, two standard JSP tags provide functionality that is useful in ColdFusion pages: the forward and include tags invoke JSP pages and Java servlets. The PageContext object described in
About GetPageContext and the PageContext object section has forward and include methods that provide the same operations. For more information about using these methods, see
Accessing a JSP page or servlet from a ColdFusion page in
Interoperating with JSP pages and servlets.