idea cannot resolve symbol ‘SpringApplication’
时间: 2023-07-26 07:07:47 浏览: 145
idea用maven搭建mybatis框架demo(附数据库表)
这个问题可能是因为你的项目没有正确地导入 Spring Boot 的相关依赖所致。你需要确保在你的项目中正确地添加了以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
```
如果你已经添加了这个依赖,但是仍然遇到了这个问题,你可以尝试清理你的项目并重新构建。如果问题仍然存在,你可以尝试使用 Maven 命令 `mvn clean install` 重新构建你的项目并重新导入依赖。
阅读全文