Could not find class [org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration]
时间: 2023-12-02 20:41:44 浏览: 173
根据提供的引用[1],可以看出该问题是由于Spring Boot的安全自动配置类未被正确排除导致的。可以通过在@SpringBootApplication注解中排除SecurityAutoConfiguration类来解决这个问题。具体方法如下:
```java
@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
public class YourApplication {
// your code here
}
```
另外,根据提供的引用,我们可以看到该问题可能还与Maven依赖有关。如果您使用的是Maven,请确保您的pom.xml文件中包含了正确的依赖项。您可以尝试在pom.xml文件中添加以下依赖项:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>2.3.12.RELEASE</version>
</dependency>
```
如果您使用的是Gradle,请确保您的build.gradle文件中包含了正确的依赖项。您可以尝试在build.gradle文件中添加以下依赖项:
```groovy
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.3.12.RELEASE'
```
阅读全文