D:\appointment-register\hospital-manage\src\main\java\jw\hospital\hospitalmanage\config\GlobalExceptionHandler.java:7:47 java: 程序包org.springframework.web.bind.annotation不存在
时间: 2023-06-21 20:05:34 浏览: 90
医院管理信息系统Java
这个错误提示是因为你缺少了 Spring Web 模块的依赖,可以尝试在你的项目中添加以下依赖:
```xml
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.6</version>
</dependency>
```
添加依赖后,记得重新构建项目,以便让 Maven 下载依赖并更新项目的 classpath。如果你使用的是 Gradle,可以尝试添加以下依赖:
```groovy
implementation 'org.springframework:spring-web:5.3.6'
```
同样,添加依赖后记得重新构建项目。
阅读全文