java: 程序包org.springframework.web.bind.annotation不存在
时间: 2023-05-30 21:07:00 浏览: 1561
annotation的jar包
这个错误通常是因为缺少Spring Web依赖库导致的。您需要在您的项目中添加以下依赖库:
Maven:
```
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.10</version>
</dependency>
```
Gradle:
```
implementation 'org.springframework:spring-web:5.3.10'
```
请注意,版本号可能与上述示例不同,取决于您的项目需要。您可以在Maven中央存储库中查找最新版本号。
阅读全文