Dependency 'org.mybatis:mybatis:3.5.13' not found
时间: 2024-05-12 13:19:56 浏览: 191
mybatis 注解别名找不到
As an AI language model, I do not have access to your project's environment and dependencies. However, if you are using Maven as your project management tool, you can add the following dependency to your pom.xml file:
```
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.13</version>
</dependency>
```
If you are using Gradle, you can add the following dependency to your build.gradle file:
```
implementation 'org.mybatis:mybatis:3.5.13'
```
Make sure to update your project's dependencies by running the appropriate command for your build tool (e.g. `mvn clean install` for Maven or `gradle build` for Gradle).
阅读全文