IntelliJ IDEA + AspectJ

Posted

技术标签:

【中文标题】IntelliJ IDEA + AspectJ【英文标题】: 【发布时间】:2017-05-20 16:40:13 【问题描述】:

我正在尝试在 IntelliJ IDEA 的示例项目中使用 AspectJ。我有使用 Spring AOP 的经验,但这是我第一次使用 AspectJ,并且无法使其工作。

我正在尝试按照此处所述进行操作:https://www.jetbrains.com/help/idea/2017.1/aspectj.html

我的 build.gradle:

apply plugin: 'java'

repositories

    mavenCentral()


dependencies

    compile "org.projectlombok:lombok:+"

    compile "org.aspectj:aspectjrt:+"
    compile "org.aspectj:aspectjweaver:+"
    compile "org.aspectj:aspectjtools:+"


buildscript

    repositories
    
        maven
        
            url "https://maven.eveoh.nl/content/repositories/releases"
        
    

    dependencies
    
        classpath "nl.eveoh:gradle-aspectj:+"
    


project.ext

    aspectjVersion = '+'


apply plugin: 'aspectj'

我的方面:

package aspects;

import lombok.SneakyThrows;
import lombok.experimental.FieldDefaults;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;

import java.util.Arrays;

@Aspect
@FieldDefaults(makeFinal = true)
public aspect LoggingAspect

    Journal journal = Journal.INSTANCE;

    pointcut all(ProceedingJoinPoint proceedingJoinPoint) : execution(* * set*(..) );

    around() : all(ProceedingJoinPoint proceedingJoinPoint)
    
        System.out.println("asd");
    

    @SneakyThrows
    @Around("execution(* * repository.*.*(..))")
    public Object log(ProceedingJoinPoint proceedingJoinPoint)
    
        journal.write(proceedingJoinPoint.getThis().getClass().getCanonicalName());
        journal.write("\n");

        String arguments = Arrays
            .stream(proceedingJoinPoint.getArgs())
            .map(o -> o.getClass().getCanonicalName() + " " + o.toString())
            .reduce(new StringBuilder(), StringBuilder::append, StringBuilder::append)
            .toString();

        journal.write(arguments);
        journal.write("\n");

        long start = System.currentTimeMillis();

        Object result = proceedingJoinPoint.proceed();

        journal.write(result.toString());
        journal.write("\n");

        journal.write(String.valueOf(System.currentTimeMillis() - start));
        journal.write("\n\n");
        journal.flush();

        return result;
    

示例类:

package repository;

import java.io.Serializable;

public class Task implements Serializable

    private static final long serialVersionUID = 1L;

    enum Status NEW, IN_PROGRESS, FINISHED;

    private Integer id;
    private String description;
    private Employee assignee;
    private Employee reporter;
    private Status status;

    public Task(final Integer id, String description, final Employee assignee, final Employee reporter) 
        this.id = id;
        this.assignee = assignee;
        this.reporter = reporter;
        this.description = description;
        this.status = Status.NEW;
    

    public Employee getAssignee() 
        return assignee;
    

    public void setAssignee(Employee assignee) 
        this.assignee = assignee;
    

...

我有 IntelliJ IDEA Ultimate 2017.2,它正确提示所有方法(getter 和 setter)都是我的切入点。它还暗示我,对于我的建议“日志”,有多个切入点。但是,它并没有暗示“所有”建议。

我已安装(最新版本)插件,例如: - AspectJ 支持 - AspectJ 织布工 - Spring AOP/@AspectJ

Gradle 依赖项自动为这个项目创建了库,所以我没有复制它。

我已启用:Build > AspectJ weaving。

设置 > 构建、执行、部署 > 编译器 > Java 编译器:

使用编译器:ajc

Ajc 编译路径:/home/me/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjtools/1.8.10/5c5957ee4615bde33b54ce965f5b85b8827b97d5/aspectjtools-1.8.10.jar

命令行参数:空

生成调试信息:选中

委托给 javac:已检查

启用注释处理选项:选中

项目构建和编译没有问题。它运行起来就像从来没有任何方面一样,没有打印出任何方面的特殊性,也没有创建临时文件,并且所有方法都运行良好(尽管在我的“所有”建议中,我没有处理关节点)。

当我在任何建议的第一行创建断点并使用调试器运行项目时,什么都没有被捕获。

我错过了什么?

【问题讨论】:

【参考方案1】:

在浪费了更多时间之后,我发现我将两个不同的 AspectJ sytnax 混合在一起。

一个只涉及方面(如“公共方面 LoggingAspect”),第二个是常规 Java 注释(如“@Aspect”或“@Around”)。

当我用“公共类 LoggingAspect”替换“公共方面 LoggingAspect”时,它起作用了。很难找到,因为一切仍然编译没有问题。

希望有一天它对某人有所帮助,或者至少在 ajc 的未来版本中,他们会添加更详细的编译器输出。

【讨论】:

嗨,您需要创建任何 aop.xml 文件吗?我正在使用@Aspect 注释和 Intellij。一切都编译并运行,但 Aspect 代码从不执行。 @F.K.我不必创建任何 XML 文件。 感谢您的回复。对我来说,我必须创建 META-INF/aop.xml。这是一个 Spring Boot 应用程序。如果我删除这个 xml 文件,AspectJ 根本就不起作用。没有错误,但仍然不起作用。像“public aspect xyz”这样的类仍然不能工作,但没关系,因为 Java 工作正常。

以上是关于IntelliJ IDEA + AspectJ的主要内容,如果未能解决你的问题,请参考以下文章

intellij idea 怎么编译erlang

intellij idea 14.1.5 怎么弄中文

请教intellij idea 14安装jrebel破解方法

macOS&&IntelliJ IDEA-IntelliJ IDEA介绍以及IntelliJ IDEA 2019.3新特性

intellij idea svn怎么比较

如何提高intellij idea 14响应速度