无法在Spring 5中使用@Aspect注解

mcvgt66p  于 2022-12-28  发布在  Spring
关注(0)|答案(2)|浏览(183)

我正在实现面向方面的编程,但是我不能添加@Aspect注解,即使我已经在POM.xml中添加了aspectjweaver依赖项。
你可以在下面找到我的代码

这是我的POM.xml文件

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.AOP</groupId>
  <artifactId>com.AOP</artifactId>
  <version>1.0-SNAPSHOT</version>

  <name>com.AOP</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>

    <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>5.3.24</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>5.3.24</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.springframework/spring-aop -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
      <version>5.3.24</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
      <version>1.9.19</version>
      <scope>runtime</scope>
    </dependency>

以下是aspectjweaver的依赖项

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.9.9.1</version>
      <scope>runtime</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

  </dependencies>

  <build>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.1.0</version>
        </plugin>
        <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.8.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.22.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-jar-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>
        <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
        <plugin>
          <artifactId>maven-site-plugin</artifactId>
          <version>3.7.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-project-info-reports-plugin</artifactId>
          <version>3.0.0</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

这是我的配置文件config.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop.xsd">

在这里您可以看到我已经启用了aop的aspectj

<aop:aspectj-autoproxy />

<bean name="payment" class="com.AOP.services.PaymentServicesImpl" />
<bean name="aspect" class="com.AOP.Aspects.mainAspect" />
</beans>

我的接口名为PaymentServiceImpl

package com.AOP.services;

public interface PaymentServicesImpl {

    public void makePayment(double amount);
}

实现上述接口的Java类

package com.AOP.services;


public class actualPaymentService implements PaymentServicesImpl{
    @Override
    public void makePayment(double amount) {
        System.out.println("Rs "+ amount + " Credited to your bank Account");
    }
}

最后是我的方面类****这是我收到错误的地方,我在下面附上了错误的屏幕截图

package com.AOP.Aspects;

import org.aspectj.lang.annotation.Aspect;


public class mainAspect {
    @Before("execution(* com.AOP.services.actualPaymentService)")
    public void Auth(){
        System.out.println("payment is processing!");
    }
}

错误的屏幕截图x1c 0d1x

fnatzsnv

fnatzsnv1#

尝试像这样添加aspectjrt

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjrt</artifactId>
    <version>1.9.7</version>
    <scope>runtime</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjtools -->
<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjtools</artifactId>
    <version>1.8.9</version>
</dependency>

转到.m2文件夹并删除资源库文件夹,返回IDE并运行maven clean install
或从端子mvn clean install
同时确保您使用的至少是JDK8。

<maven.compiler.source>1.8</maven.compiler.source>
 <maven.compiler.target>1.8</maven.compiler.target>
qv7cva1a

qv7cva1a2#

前言:编码和命名约定违规

抱歉对你这么直率,但我是想帮助你,当我说在你开始学习像Spring这样复杂的应用框架之前,你应该先学习一些Java基础知识。编程不仅仅是复制和粘贴。我这么说是因为你的代码违反了这么多编码约定,我几乎不知道从哪里开始列出它们。有些事情你应该多给予注意:

  • 类名应该是大写字母,并且使用驼峰式大小写。例如,mainAspectMainAspectactualPaymentServiceActualPaymentService
  • 包名应该由小写字符加上下划线组成,例如com.AOP.Aspectscom.aop.aspects
  • 方法名应该以小写字母开头,并使用驼峰式大小写,例如Authauth
  • 你调用了一个接口*Impl,这是非常违反直觉的,相反,如果有任何类,你应该调用实现类*Impl,例如PaymentServicesImplPaymentServicesactualPaymentServicePaymentServicesImpl

为什么编码和命名约定很重要?因为通常你不是在一个人的项目上工作,而是与其他开发人员合作,你会因为违反所有约定而混淆他们。

Maven、Spring和AOP问题

关于您的实际问题,您可以解决它,就像我在前面的评论中所说的,从aspectjweaver依赖项中删 debugging 误的<scope>runtime</scope>,至于aspectjrt依赖项,您根本不需要它,因为AspectJ运行时类已经包含在weaver库中,后者是前者的超集,现在,您的IDE(IntelliJIDEA或任何其他)应该能够导入AspectJ类。
下一个问题是在配置文件中,你不能用接口声明一个具体的(非抽象的)bean,也就是说,如果我们坚持使用你的示例代码中扭曲的、令人恼火的类名,你必须将<bean name="payment" class="com.AOP.services.PaymentServicesImpl"/>改为<bean name="payment" class="com.AOP.services.actualPaymentService"/>,以避免在启动Spring时出现运行时错误。
最后但并非最不重要的是,方面切入点是错误的。execution(* com.AOP.services.actualPaymentService)是无效语法,因为execution切入点需要一个方法签名,而不仅仅是一个类名。

  • execution(* com.AOP.services.actualPaymentService.*(..)),(实现类中的任何方法执行)
  • execution(* com.AOP.services.PaymentServicesImpl.*(..))(在实现接口的任何类中的任何方法执行),
  • within(com.AOP.services.PaymentServicesImpl+)(接口类或其任何子类中的任何连接点)。

在您修复了所有这些问题之后,当运行这样的示例应用程序时...

package com.AOP;

import com.AOP.services.PaymentServicesImpl;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

public class Application {
  public static void main(String[] args) {
    try (ConfigurableApplicationContext appContext = new FileSystemXmlApplicationContext("src/main/resources/META-INF/config.xml")) {
      PaymentServicesImpl paymentServices = (PaymentServicesImpl) appContext.getBean("payment");
      paymentServices.makePayment(123.45);
    }
  }
}

...您应该看到如下所示的控制台日志:

payment is processing!
Rs 123.45 Credited to your bank Account

但是请,请按照我建议的方式重命名你的包,类和方法,读那样的代码会伤到我的眼睛。
你的问题有一点值得称赞(也是我试图帮助你的主要原因)是你实际上试图提供一个完整的,可重复的版本,你的问题,即Maven POM,Spring配置和完整的类包括包名。其他社区成员在这里有更多的经验比你往往做得更糟糕,在这方面,只是提供一些片段 * 他们 * 认为是相关的,搬起石头砸自己的脚,因为关键的部分丢失了,因此没有人能重现他们的问题。2如果没有一个可重现的例子,我当然不可能在你的代码中发现3个主要的问题。3好的,我不得不添加一个小的驱动程序,以便能够实际运行该项目,但这是可以的。4下次,请也添加自己。5否则,保持好的提问方式。🙂

相关问题