MyBatis的快速入门

Mybatis是一个作用在持久层的框架,主要是为了简化代码,方便程序员对数据库进行操作。下面以新创建一个项目mybatis-demo来介绍一下Mybatis的快速入门,该项目主要是从数据库中查找user的全部信息。

1、创建maven项目,配置pom.xml文件

首先新建一个mybatis的maven项目,在pom.xml配置文件中分别导入mybatis、mysql、junit、slf4j等API的依赖。配置文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>yukaixin</groupId>
    <artifactId>mybatis-demo</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>

    <dependencies>
        <!-- 导入mybatis的依赖 -->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.5</version>
        </dependency>

        <!-- mysql的驱动 -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.36</version>
        </dependency>

        <!-- junit单元测试 --

你可能感兴趣的:(Mybatis,mybatis)