Error:(4, 37) java: 程序包org.apache.ibatis.annotations不存在
时间: 2023-08-29 15:07:58 浏览: 324
ibatis-core-3.0.jar org.apache.ibatis.annotations.Param
5星 · 资源好评率100%
这个错误表明你的项目中缺少 MyBatis 的注解包,你需要在你的项目中添加 MyBatis 的注解依赖。你可以在你的项目中的 Maven 或 Gradle 配置文件中添加以下依赖:
Maven:
```xml
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.x.x</version>
</dependency>
```
Gradle:
```groovy
implementation 'org.mybatis:mybatis:3.x.x'
```
其中,`3.x.x` 表示 MyBatis 的版本号。你需要将其替换为你所使用的版本号。添加完依赖后,重新编译运行你的项目即可。
阅读全文