SiteKickr Web Development

Defending ColdFusion

I've been a ColdFusion developer for about 10 years now. I started with version 5.x and now work in 9.x. But, until recently, I hadn't updated myself with all of the improvements happening with each new version. Like many, I got caught up with client-side developments in HTML, CSS & JavaScript. A few months ago, I tasked myself with creating a ColdFusion payment gateway component. I wanted to make it extensible and the best way to do that was to take an object-oriented approach, one that ColdFusion did not offer, or so I thought at the time.

Over the years, I had stood by while ColdFusion took a beating for it's lack of object-oriented features. But, I remained loyal, and decided to stick it out with the procedural coding style I had always been used to. When a job demanded a more object-oriented approach, I simply switched to PHP or Python. With the daily demands of running a small web development business, I never got around to learning what each new ColdFusion version had to offer, even though I'd been upgrading to each new major version.

When I finally did glance over Adobe's latest ColdFusion documentation earlier this year, I was blown away! ColdFusion components were touted as the new way to package code, and not only did they support inheritance and polymorphism, but allowed to you define an interface as well. Each function could be declared public, private or remote. You get the usual this reference, but unlike some other OO languages (JavaScript comes first to mind), you're also supplied with a super reference, to access the parent class.

ColdFusion doesn't go so far as to support multiple inheritance, but hey, baby steps. And really, how many people out there have used multiple inheritance without completely killing the maintainability of their code by adding an unneeded complexity.

Admittedly, the syntax for creating a function and defining it's arguments is a bit clunky:

<cffunction name="myFunc" ...>
  <cfargument name="myArg" ...>
</cffunction>

But, that's only if you haven't gotten comfortable with CFScript, which has a surprisingly Java-like syntax for defining a function:

public void function myFunc(String myArg) { 
...
} 

So, it appears to me that ColdFusion, which has always been a frontrunner in Rapid Database-Driven Application Development, now packs a double punch. It provides the incredibly intuitive tag-based syntax, if you want to code and deploy a website in under an hour. Yet, it also offers the OO capabilities required for large-scale projects.

In what other language can you, natively, define a class interface or create a dynamically generated downloadable PDF file, in just two lines of code?

In short, ColdFusion does now, and has for a while, offered all of the usual OO key components:

Of course, the cost of the ColdFusion license is often the deciding factor when a developer settles on PHP or other community driven language. But, consider your options:

There are ways to get your foot in the door, that is, the door to low-cost upgrade licenses. Once you purchase a full license, the upgrades come at a fraction of the cost.