ColdFusion 9.0 Resources |
About ColdFusion, Java, and J2EEColdFusion is built on a J2EE-compliant Java technology platform. This structure lets ColdFusion applications take advantage of, and integrate with, J2EE elements. ColdFusion pages can do any of the following:
About ColdFusion and client-side JavaScript and appletsColdFusion pages, like HTML pages, can incorporate client-side JavaScript and Java applets. To use JavaScript, you write the JavaScript code just as you do on any HTML page. ColdFusion ignores the JavaScript and sends it to the client. The cfapplet tag simplifies using Java client-side applets. Use an applet on a ColdFusion page
For example, ColdFusion includes a Copytext sample applet that copies text from one text box to another. The ColdFusion Setup automatically registers the applet in the Administrator. To use this applet, incorporate it on your page. For example: <cfform action = "copytext.cfm"> <cfapplet appletsource = "copytext" name = "copytext"> </cfform> About ColdFusion and JSPColdFusion supports JSP tags and pages in the following ways:
ColdFusion pages are not JSP pages, however, and you cannot use most JSP syntax on ColdFusion pages. In particular, you cannot use the following features on ColdFusion pages: Include, Taglib, and Page directives: Instead, you use CFML import tag to import tag libraries, and the include (or forward) method of the page context object returned by the ColdFusion GetPageContext function to include pages. For more information, see Using JSP tags and tag libraries and Interoperating with JSP pages and servlets. Expression, Declaration, and Scriptlet JSP scripting elements: Instead, you use CFML elements and expressions. JSP comments: Instead, you use CFML comments. (ColdFusion ignores JSP comments and passes them to the browser.) Standard JSP tags: Such as jsp:plugin, unless your J2EE server provides access to these tags in a JAR file. Instead, you use ColdFusion tags and the PageContext object. About ColdFusion and servletsSome Java servlets are not exposed as JSP pages; instead they are Java programs. You can incorporate JSP servlets in your ColdFusion application. For example, your enterprise could have an existing servlet that performs some business logic. To use a servlet, the ColdFusion page specifies the servlet by using the ColdFusion GetPageContext function. When you access the servlet with the GetPageContext function, the ColdFusion page shares the Request, Application, and Session scopes with the servlet, so you can use these scopes for shared data. ColdFusion pages can also access servlets by using the cfservlet tag, use the servlet URL in a form tag, or access an SHTML page that uses a servlet tag. Note: The cfservlet tag, which provides access
to servlets on JRun servers, is deprecated since ColdFusion MX.
About ColdFusion and Java objectsJava objects include the following:
ColdFusion pages use the cfobject tag to access Java objects. ColdFusion searches for the objects in the following order:
ColdFusion reloads classes from these directories, as described in the next section, “About class loading.”
About class loadingColdFusion dynamically loads classes that are either .class files in the web_root/WEB-INF/classes directory or in JAR files in the web_root/WEB-INF/lib directory. ColdFusion checks the timestamp on the file when it creates an object that is defined in either directory, even when the class is already in memory. If the file that contains the class is newer than the class in memory, ColdFusion loads the class from that directory. To use this feature, make sure that the Java implementation classes that you modify are not in the general JVM classpath. To disable automatic class loading of your classes, place the classes in the JVM classpath. Classes located on the JVM classpath are loaded once per server lifetime. To reload these classes, stop and restart ColdFusion. About GetPageContext and the PageContext objectBecause ColdFusion pages are J2EE servlet pages, all ColdFusion pages have an underlying Java PageContext object. CFML includes the GetPageContext function that you can then use in your ColdFusion page. The PageContext object exposes several fields and methods that can be useful in J2EE integration. In particular, it includes the include and forward methods that provide the equivalent of the corresponding standard JSP tags. For more information on other features of the PageContext object, see Java documentation. You can find the Javadoc description of this class at http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/PageContext.html. About CFML variables and Java variablesBecause ColdFusion variables are case-independent and Java variables are case-dependent, be careful about variable names. Use the following rules and guidelines when sharing data between ColdFusion and Java code, including JSP pages and servlets. Rules
|