Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the ColdFusion framework "fusebox" do exactly?

I have a assignment for school and I need to use the Fusebox framework on my ColdFusion website. But why do I need to use it? And what are the benefits?

like image 471
Anwar Avatar asked Dec 07 '22 02:12

Anwar


2 Answers

Fusebox is a Model-View-Controller (MVC) framework for building application with the ColdFusion programming language. However, it is horribly outdated and hasn't been in development for quite some time. I'm surprised that you're being asked to use it for class when there are much more modern MVC frameworks available for ColdFusion.

ColdBox and Framework 1 are much more modern implementations of MVC for CFML applications. It won't hurt you to use FuseBox for class, you'll learn the basics of MVC and how to structure your application. However, once you start building a larger application, try using either of these newer frameworks. You'll have a much better time with them.

As for why you need to use it, the question is not, "Why use FuseBox", but "Why use MVC?"

To quote the article from Wikipedia,

Model–view–controller (MVC) is a software architectural pattern for implementing user interfaces. It divides a given software application into three interconnected parts, so as to separate internal representations of information from the ways that information is presented to or accepted from the user. The central component, the model, consists of application data, business rules, logic and functions. A view can be any output representation of information, such as a chart or a diagram. Multiple views of the same information are possible, such as a bar chart for management and a tabular view for accountants. The third part, the controller, accepts input and converts it to commands for the model or view.

In other words, MVC gives you an excellent way to structure and separate your application code. You're probably used to building CF apps where queries, logic and UI are all in the same file. As your applications grow larger, this will cause duplication of code and other issues that can be easily addressed with an MVC framework.

like image 136
Adrian J. Moreno Avatar answered Jan 05 '23 18:01

Adrian J. Moreno


Fusebox may be out of date but it is not a bad system. It was used in many projects for many years. In fact it is a great tool for learning how to structure a software project because its principles can easily be understood even for newbies - the Fusebox structure is intuitive and can be taught in 10 minutes. If I were a teacher, I'd always start with something simple! Fusebox can be used to convey basic MVC ideas. Then if people want to learn more complex and contemporary methods, they can look at Coldbox which is way less intuitive

like image 38
Michael Avatar answered Jan 05 '23 17:01

Michael