Application Lifecycle - getrailo/railo GitHub Wiki

You can define applications in Railo Server by simply adding a file called Application.cfc

Application Variables

Application variables can be defined in the Application.cfc, before any function is called, for example:

component {
  this.name = "MyApplicationName";
}
  • name: Defines the name of the application

Application Methods