【MyBatis】学习笔记000环境配置

1.MyBatis中文文档

https://mybatis.org/mybatis-3/zh/index.html

2.依赖

<dependency>
  <groupId>org.mybatis</groupId>
  <artifactId>mybatis</artifactId>
  <version>x.x.x</version>
</dependency>

如不知道使用什么版本,可进入maven官网查询。

maven官网链接:

https://mvnrepository.com/

原文地址:https://www.cnblogs.com/AirCL/p/14329870.html