Instructions & Interpreters
CFML is a dynamic language that runs on the JVM
Dynamic Language
CFML is a compiled programming language that can’t run on your processor directly; it has to be fed into a middleman called the Java Virtual Machine in the form of Java Bytecode. It is also a dynamic language (https://en.wikipedia.org/wiki/Dynamic_programming_language), meaning you do not have the typed restrictions a compile-time language like Java has. This means you have greater flexibility as the engine infers your types. It allows you to do runtime manipulations like method injections, removals, metadata programming, etc., that a typical typed language would not allow. It also allows us to not be in the dreaded compile, build, deploy cycle since the CFML scripts will be evaluated, compiled, and executed all at runtime. No need for re-deploying or annoying restarts.

Runtime Exceptions
However, with much power comes greater responsibility. There is a lot more potential for runtime exceptions because these exceptions cannot be caught by a compiler at compilation time, as compilation occurs simultaneously with execution. Thus, unit and integration testing become a real asset when building applications under a dynamic language. Wouldn't you know it? We also have a great tool for test-driven and behavior-driven development for ColdFusion: TestBox (https://testbox.ortusbooks.com/)

Code Portability
The ColdFusion engine will convert your CFML markup into byte code and feed it into the Virtual Machine (VM) to execute it. The benefit of this approach is that you can write ColdFusion code once and, typically, execute it on many different operating systems and hardware platforms.
You can run any CFML script in any Adobe or Lucee server or in the command line with CommandBox.
Java Integration
CFML is a dynamic language for the JVM. Thus it runs in a full JDK/JRE context. It also provides you with hooks into the Java virtual machine. Meaning you can create and use Java objects natively in CFML. You can even create dynamic proxies and implement Java interfaces natively. Almost Any Java library or program can be class loaded and executed in CFML. For further reading, check out the Java Integration Guide: https://cfdocs.org/java
currentFile = createObject( "java", "java.io.File" ).init( getCurrentTemplatePath() );
writeOutput( currentFile.lastModified() );
createDynamicProxy(
new cbproxies.models.Consumer( arguments.consumer ),
[ "java.util.function.Consumer" ]
)
Running CFML from the Command Line
This is a durable way to write CFML code because you save your instructions into a file. That file can then be backed up, transferred, added to source control, etc.
An Example CFML File
We might create a file named hello.cfm
like this:
<cfoutput>Hello from CFML Land!</cfoutput>
Then we could run the program like this box hello.cfm
and get the following result:
Hello from CFML Land!
When you run box hello.cfm
you’re actually loading the CFML instruction set engine (Lucee) and executing the code. Please note there is NO web server here. It is a pure command-line execution.
CommandBox REPL
CommandBox sports a CFML Read Eval Print Loop interface or most commonly known as REPL. The REPL is like a programming calculator, input in, output out. It will execute CFML instructions and give you feedback on syntax and results. To start a REPL, we must go into the CommandBox shell by typing just box
or opening the box
binary.
Once in the CommandBox prompt, type repl
and you will be placed in REPL mode:

Please note that the REPL in CommandBox opens in script mode, not tag mode. This means that we must type in instructions that adhere to the ColdFusion scripting or ECMA script-like syntax instead of the tag-based syntax. We will discover more about syntax in the next chapter.
For now, let's type the equivalent in Script syntax:
writeOutput( "Hello from CFML Land!" )

Boom! We get a magical hello from the CommandBox REPL.
Tip: Our REPL supports not only one-line commands but also multi-line commands. Go ahead, try it!
if( true ){
writeoutput( "hello" )
}
echo( "hello" )
Producing Output
In this book, we will primarily be using the REPL or CommandBox for execution. We will use several functions to produce output during our exercises and code examples. Here is a list of what we will use to produce output to either the console, the output stream, or a log file.
echo()
While writeOutput writes to the page-output stream, this function writes to the main response buffer. https://cfdocs.org/echo
systemOutput()
Writes the given object to the output stream https://cfdocs.org/systemoutput
writeOutput()
Appends text to the page-output stream. https://cfdocs.org/writeoutput
writeDump()
Outputs the elements, variables, and values of most CFML objects. Useful for debugging. You can display the contents of simple and complex variables, objects, components, user-defined functions, and other elements. https://cfdocs.org/writedump
writeLog()
Writes a message to a log file. https://cfdocs.org/writelog
writeDump()
is helpful in the console to visualize complex objects
writedump( var=variable, output="console" )
You can also pass complex objects to
systemOuput() as well.
Last updated
Was this helpful?