You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jcs-dev@jakarta.apache.org by Byron Foster <by...@base2.cc> on 2003/09/05 03:54:22 UTC

[PATCH] Load config file from filesystem

Here is patch that will load a config file from the file system.  It 
follows the same pattern as Torque and Velocity for initialization:

try
{
     JCS.init(filename);
}
catch(IOException e)
{
     // Do something.
}


Byron