3 回答
TA贡献1805条经验 获得超10个赞
必须使用2.0.0.0 spring boot父版本吗?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
这个 Missing 类位于 spring-aop 包中,如果您使用2.1.6.RELEASE版本spring-boot-starter-parent,spring-aop它将与依赖项一起自动包含在那里。
如果必须使用 2.0.0.RELEASE,则必须手动添加 spring-aop 依赖项:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>5.1.8.RELEASE</version>
<scope>compile</scope>
</dependency>
根据您拥有的 spring 版本更改版本。
或者,您可以尝试添加此依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>2.0.0.RELEASE</version>
</dependency>
TA贡献1864条经验 获得超6个赞
看来您错过了一个依赖项。尝试将其添加到您的 pom.xml 中。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring-framework.version}</version>
</dependency>
添加回答
举报