mybatis官方文档中文,mybatis免费

首页 > 经验 > 作者:YD1662022-10-29 11:32:46

官网地址:https://github.com/mybatis/mybatis-3

一个简单的mybatis-demo简概

项目demo地址:https://gitee.com/shuashua-world/shuashua-blog/tree/master/demo/mybatis相关demo/simple-mybatis/

项目结构

mybatis官方文档中文,mybatis免费(1)

配置环境maven依赖

<dependencies> <!--mysql驱动--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.37</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.11</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> <optional>true</optional> </dependency> </dependencies>mybatis配置文件

可参考mybatis官网的入门一栏

mybatis官方文档中文,mybatis免费(2)

配置文件名可以不为mybatis-config.xml,具体名称和路径可由加载的类决定:

mybatis官方文档中文,mybatis免费(3)

mapper映射配置pojo类(实体类)

mybatis官方文档中文,mybatis免费(4)

首页 12下一页

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.