Installation / Usage / Compilation
The current release is JLCF 1.0.0
You can download the latest release from Sourceforge
In order to use and build JLCF, you will need java 6 or higher and ant.
Using the binary distribution
The binary distribution of JLCF is a .zip file with the following structure:
dist ==> contains the JLCF framework .jar
file
ext_lib ==> contains libraries used by JLCF
(currentyly only log4j) . These need to be in the classpath as
well
docs ==> contains the javadoc documentation
and the .pdf manual
LICENSE ==> contains some licensing related information
In order create a JLCF application, you need to have jlcf-1.0.0.jar and the log4j jar in your classpath.
Running the JLCF Examples
The JLCF Examples is a separate .zip file. After unzipping the file you can run the examples. All you need is ant and java.
at the root location of the unzipped folder run:
ant -f runProject ==> this will tun the calculator example
ant -f runProject <name> ==> this will run the example indicated by <name>. The example names can be found in the ant runProject.xml file (advancedcalculator, simplecallback, advancedcallback, interceptors, remotinginterceptor, reconfiguration, remoting)
Downloading and compiling the source distribution
The source distribution of JLCF contains 2 eclipse projects, JLCF and JLcFExamples. The projects can be imported in eclipse in order to further develop the system. In order to just build JLCF you do not need to import the project in eclipse, it can be done from the command line using ant.
Building JLCF
go the the JLCF folder and type:
and -f buildSchema ==> this will build the necessary java types from the .xsd schemas of JLCF
ant -f buildProject ==> this will compile JLCF, generate the java documentation and create the .jar and .zip distribution. The .zip distribution will be located in the dist folder.
Building the JLCF Examples
copy the jlcf jar from JLCF/dist to JLCFExamples/ext_lib
go to the JLCFExamples folder type:
ant -f buildProject ==> This will compile the JLCF examples and generate the .zip distribution in the dist folder.Importing the projects in eclipse
JLCF is developed using eclipse Juno SR2. It can be imported in eclipse using the "import existing projects" function.