mybatis_1_使用Maven构建项目时,如何添加Mybatis

问题:使用Maven构建项目时,如何添加Mybatis

解决:

将下面的依赖代码添加到pom.xml中即可

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

  查看mybatis的版本路径:https://mvnrepository.com/artifact/org.mybatis/mybatis

posted @ 2022-08-12 16:23  留白*  阅读(108)  评论(0编辑  收藏  举报