JBoss AOP works by instrumenting the classes you want to run. This means that modifications to the bytecode are made in order to add extra information to the classes to hook into the AOP library. JBoss AOP allows for two types of instrumentation
This chapter describes the steps you need to take to precompile your classes with the aop precompiler.
JBoss AOP comes with an ant task that you can use for precompiling your classes with the aop precompiler. An example build.xml file is the basis for the explanation. (It is quite similar to the one used in the previous chapter.) There will be differences in the build.xml file if you are using JDK 1.4.2 or JDK 5.0, these are outlined below:
<?xml version="1.0" encoding="UTF-8"?> <project default="compile" name="JBoss/AOP"> <target name="prepare">
Define the source directory, and the directory to compile classes to. If you're not fussy, they can point to the same directory.
<property name="src.dir" value="PATH TO YOUR SOURCE DIR"> <property name="classes.dir" value="PATH TO YOUR DIR FOR COMPILED CLASSES">
Include the jars AOP depends on, these are common to all JDK's
<path id="javassist.classpath"> <pathelement path="../../../javassist.jar"/> </path> <path id="trove.classpath"> <pathelement path="../../../trove.jar"/> </path> <path id="concurrent.classpath"> <pathelement path="../../../concurrent.jar"/> </path> <path id="jboss.common.classpath"> <pathelement path="../../../jboss-common.jar"/> </path> <path id="lib.classpath"> <path refid="javassist.classpath"/> <path refid="trove.classpath"/> <path refid="jboss.aop.classpath"/> <path refid="jboss.common.classpath"/> <path refid="concurrent.classpath"/> </path>
This snippet shows what to do for JDK 1.4. It will also work with JDK 5.0 if your classes do not use JDK 5.0 style annotations and enums:
<!-- JDK version 1.4.2 --> <!-- Do not include this if using JDK 1.5 with annotations!!!! --> <path id="jboss.aop.classpath"> <pathelement path="../../../jboss-aop.jar"/> </path> <!-- JDK version 1.4.2 - END -->
This snippet shows what to do for JDK 5.0 if you are using JDK 5.0 annotations:
<!-- JDK version 1.5 --> <!-- Do not include this if using JDK 1.4.2!!!! --> <path id="jboss.aop.classpath"> <pathelement path="../../../jboss-aop-jdk15.jar"/> </path> <!-- JDK version 1.5 - END -->
(You should only use one of the two previous snippets for setting up jboss.aop.classpath)
Now we set up the full classpath of all the needed libraries:
<path id="classpath"> <path refid="lib.classpath"/> <path refid="jboss.aop.classpath"/> </path id="classpath">
Define the org.jboss.aop.ant.AopC ant aop precompiler task:
<taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/> </target>
> <target name="compile" depends="prepare">
Compile the files (from the source directory to the compiled classes directory:
<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on" deprecation="on" optimize="off" includes="**"> <classpath refid="classpath"/> </javac>
Now use the ant aop precompiler task, it reads the files from the
<aopc compilerclasspathref="classpath" verbose="true"> <classpath path="${classes.dir}"/> <src path="${classes.dir}"/> <include name="**/*.class"/> <aoppath path="jboss-aop.xml"/> <aopclasspath path="aspects.jar"/> </aopc>
If you are using JDK 1.4.2 and wish to use annotations, you need to define the org.jboss.aop.ant.AnnotationC ant task, and run that BEFORE you invoke the org.jboss.aop.ant.AopC task. How to do this is shown in the previous chapter.
The org.jboss.aop.ant.AopC ant task takes several parameters.
<aoppath> <pathelement path="jboss-aop.xml"/> <pathelement path="metadata-aop.xml"/> <pathelement path="xmldir"/> </aoppath>
<aopclasspath> <pathelement path="aspects.jar"/> <pathelement path="foo.jar"/> </aopclasspath>
To run the aop precompiler from the command line you need all the aop jars on your classpath, and the class files you are instrumenting must have everything they would need to run in the java classpath, including themselves, or the precompiler will not be able to run.
The jboss.aop.path optional system property points to XML files that contain your pointcut, advice bindings, and metadata definitions that the precompiler will use to instrument the .class files. The property can have one or files it points to delimited by the operating systems specific classpath delimiter (';' on windows, ':' on unix). Files or Directories can be specified. If it is a directory, JBoss AOP will take all aop.xml files from that directory.
The jboss.aop.class.path optional system property points to all JARs or directories that may have classes that are annotated as @Aspect (See Chapter "Annotated Bindings"). JBoss AOP will browse all classes in this path to see if they are annotated. The property can have one or files it points to delimited by the operating systems specific classpath delimiter (';' on windows, ':' on unix). Note for this to have effect with JDK 1.4, you first have to run the annotation compiler with bytecode=true.
It is invoked as:
$java -classpath ... [-Djboss.aop.path=...] [-Djboss.aop.class.path=...] \ org.jboss.aop.standalone.Compiler <class files or directories>
In the /bin folder of the distribution we have provided batch/script files to make this easier. It includes all the aop libs for you, so you just have to worry about your files. The usage for JDK 1.4 is:
$ aopc <classpath> [-aoppath ...] [-aopclasspath ...] [-report] [-verbose] \ <class files or directories>+
And for JDK 1.5:
$ aopc15 <classpath> [-aoppath ...] [-aopclasspath ...] [-report] [-verbose] \ <class files or directories>+
The other parameters are the same as above.