Getting a org.springframework.beans.factory.BeanCreationException with my first Maven, Spring Project

前端 未结 2 966
温柔的废话
温柔的废话 2021-02-01 16:21

Getting a org.springframework.beans.factory.BeanCreationException with my first Maven, Spring Project. I been program for some time now with eclipse and Spring but I am looking

相关标签:
2条回答
  • 2021-02-01 16:38

    just add:

    <dependency> 
         <groupId>org.springframework</groupId> 
         <artifactId>spring-aspects</artifactId> 
         <version>3.1.2.RELEASE</version> 
    </dependency>
    
    0 讨论(0)
  • 2021-02-01 16:41

    Add this dependency in your pom.xml

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aop</artifactId>
        <version>3.1.2.RELEASE</version>
    </dependency>
    
    0 讨论(0)
提交回复
热议问题