1

我们正在使用 Liferay tomcat 中的 JSR-286 portlet 开发门户应用程序。我们正在创建扩展 Generic Portlet 的 portlet。现在我想使用 AspectJ 在 doView() 和 doModify() 方法上应用日志。我尝试使用 Spring AspectJ。但是 Spring AspectJ 仅适用于 spring 管理的 bean。

运气好的话

4

1 回答 1

1

我解决了上述问题。

这里有一些解决方案来完成它。

创建一个方面

           @Aspect
     public class TestAspect {

 TestAspect (){

    System.out.println("TestAspect Initialized");
}
@Pointcut( "execution(public void doView*(javax.portlet.RenderRequest,javax.portlet.RenderResponse) throws java.io.IOException, javax.portlet.PortletException)" )

 private void testDoView() {
    }
       @Around("testDoView()")
      public void logAround(ProceedingJoinPoint joinPoint)
      {

    System.out.println("AROUND ADVICE START");

try{
    joinPoint.proceed(joinPoint.getArgs());
        }catch(PortletException portletException){
    System.out.println("[AROUND ADVICE] :"+portletExceptionio.getMessgae());

}catch(IOException ioException){
    System.out.println("[AROUND ADVICE] :"+ioException.getMessgae());
}
catch(Throwable throwable){
    System.out.println("[AROUND ADVICE] :"+throwable.getMessage();
}

System.out.println("AROUND ADVICE EXIT");

    }

      }

一些 *.jar 文件是 AspectJ 二进制文件:

aspectjrt.jar - 运行时正确处理方面所必需的;

aspectjtools.jar - 包含 aspectj 编译器的实现;

aspectjweaver.jar - aspectj 逻辑和 java 工具之间的桥梁;

1.在命令行环境中(使用 Ant-build.xml)

 **There are three ways to inject instructions implied by AspectJ aspects:**


<project name="aspectj-example" xmlns:aspectj="antlib:org.aspectj">

<property name="src.dir" value="src/main/java"/>
<property name="resource.dir" value="src/main/resources"/>
<property name="target.dir" value="target"/>
<property name="classes.dir" value="${target.dir}/classes"/>
<taskdef uri="antlib:org.aspectj"
        resource="org/aspectj/antlib.xml"
        classpath="${resource.dir}/aspectjtools.jar"/>
 <path id="aspectj.libs">
    <fileset dir="${resource.dir}"/>
</path>
<target name="clean">
    <delete dir="${target.dir}"/>
    <mkdir dir="${target.dir}"/>
    <mkdir dir="${classes.dir}"/>
</target>

way 1: compile-time weaving

 <target name="compile-time" depends="clean">
    <aspectj:iajc source="1.5" srcdir="${src.dir}" classpathref="aspectj.libs" destDir="${classes.dir}"/>
    <java classname="com.aspectj.TestTarget" fork="true">
        <classpath>
            <path refid="aspectj.libs"/>
            <pathelement path="${classes.dir}"/>
        </classpath>
    </java>
</target>

方式2:后编译编织

<target name="post-compile" depends="clean">

    <echo message="Compiling..."/>
    <javac debug="true" srcdir="${src.dir}" classpathref="aspectj.libs" destdir="${classes.dir}"/>

    <echo message="Weaving..."/>
    <aspectj:iajc classpathref="aspectj.libs" inpath="${classes.dir}" aspectpath="${src.dir}" outJar="${classes.dir}/test.jar"/>


</target>

方式3:加载时编织

     <target name="load-time" depends="clean">

     <echo message="Compiling..."/>
     <javac debug="true" srcdir="${src.dir}" classpathref="aspectj.libs"               destdir="${classes.dir}"/>
     </target>
     </project>

2.在Ecilpse(IDE环境)

      select your project,than select configure->convert to AspectJ Project.
于 2013-10-23T08:09:26.673 回答