MyBatis里常用(依赖、属性)xml配置版与注解版

Mybatis官方文档 : http://www.mybatis.org/mybatis-3/zh/index.html
GitHub : https://github.com/mybatis/mybatis-3

所用版本

  • jdk:11
  • maven:apache-maven-3.3.9-bin.zip
  • mysql:mysql-5.5.36-win32
  • MySql Connector Java 5.1.23
  • Maven仓库:
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
  <groupId>org.mybatis</groupId>
  <artifactId>mybatis</artifactId>
  <version>3.5.3</version>
</dependency>

xml配置版

在这里插入图片描述

常用pom.xml配置

GitHub上找要导入的包
GitHub : https://github.com/mybatis/mybatis-3

<properties>
        <!--        maven构建项目使用的编码,避免中文乱码-->
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!--        编译代码使用的jdk版本-->
        <maven.compiler.source>11</maven.compiler.source>
        <!--        运行程序使用的jdk版本-->
        <maven.compiler.target>11</maven.compiler.target>
    </properties>
    
<dependencies>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<!--lombok的依赖 -->
<dependency>
    <groupId>org.projectlombok</groupId>
    <artifactId>lombok</artifactId>
    <version>1.18.16</version>
</dependency>
<!--MyBatis的依赖 -->
<dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.5.3</version>
</dependency>

<!--mysql数据库的依赖-->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.23</version>
</dependency>

<!--junit的依赖-->
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>

<!-- 加入log4j支持 -->
        <!-- https://mvnrepository.com/artifact/log4j/log4j -->
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
        </dependency>
        
         <!--第三方缓存实现–EhCache-->
            <dependency>
                <groupId>org.mybatis.caches</groupId>
                <artifactId>mybatis-ehcache</artifactId>
                <version>1.2.1</version>
            </dependency>
</dependencies>
<!--在build中配置resources,来防止我们资源导出失败的问题-->
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>

常用mybatis-config.xml配置

查看
Mybatis官方文档 : http://www.mybatis.org/mybatis-3/zh/index.html
普通版:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<!--configuration核心配置文件-->
<configuration>

    <!--导入properties文件
    当属性跟配置文件都有name时,配置文件的优先级更高
    -->
    <properties resource="database.properties"/>
    
<!--配置MyBatis的多套运行环境,将SQL映射到多个不同的数据库上,
必须指定其中一个为默认运行 环境(通过default指定-->
    <environments default="development">
<!--具体的一套环境,通过设置id进行区别,id保证唯一-->
        <environment id="development">
            <!-- transactionManager - [ 事务管理器 ]-->
            <transactionManager type="JDBC"/>
            <dataSource type="POOLED">
                <property name="driver" value="${driver}"/>
                <property name="url" value="${url}"/>
                <property name="username" value="${username}"/>
                <property name="password" value="${password}"/>
            </dataSource>
        </environment>
    </environments>

    <!--每一个Mapper.XML都需要在Mybatis核心配置文件中注册!-->
    <mappers>
        <package name="com.loey.mapper"/>
    </mappers>

</configuration>

举例版:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<!--configuration核心配置文件-->
<configuration>

    <!--导入properties文件
    当属性跟配置文件都有name时,配置文件的优先级更高
    -->
    <properties resource="database.properties">
        <property name="username" value="root"/>
    </properties>

    <!--配置日志-->
    <settings>
        <setting name="logImpl" value="LOG4J"/>
        <!--        是否开启驼峰命名自动映射,即从经典数据库列名 A_COLUMN 映射到经典 Java 属性名 aColumn。-->
        <setting name="mapUnderscoreToCamelCase" value="true"/>
        <!--       二级缓存才需要 开启全局缓存-->
        <setting name="cacheEnabled" value="true"/>
    </settings>

    <!--配置别名,注意顺序-->
    <typeAliases>
    <!--当这样配置时, User 可以用在任何地方使用 com.loey.pojo.User -->
<!--        <typeAlias type="com.loey.pojo.User" alias="user"/>-->

<!--每一个在包 com.loey.pojo 中的 Java Bean,在没有注解的情况下,会使用 Bean 的首字母小写的 非限定类名来作为它的别名。 
若有注解,则别名为其注解值。-->
        <package name="com.loey.pojo"/>
    </typeAliases>
    

<!--配置MyBatis的多套运行环境,将SQL映射到多个不同的数据库上,
必须指定其中一个为默认运行 环境(通过default指定-->
    <environments default="development">

<!--具体的一套环境,通过设置id进行区别,id保证唯一-->
        <environment id="development">

            <!-- transactionManager - [ 事务管理器 ]-->
            <transactionManager type="JDBC"/>
          <!--
            数据源(dataSource)
            有三种内建的数据源类型
            type="[UNPOOLED|POOLED|JNDI]"
            unpooled: 这个数据源的实现只是每次被请求时打开和关闭连接。
            pooled: 这种数据源的实现利用“池”的概念将 JDBC 连接对象组织起来 , 这是一种使得
                    并发 Web 应用快速响应请求的流行处理方式。
            jndi:这个数据源的实现是为了能在如 Spring 或应用服务器这类容器中使用,
                   容器可以 集中或在外部配置数据源,然后放置一个 JNDI 上下文的引用。-->

            <dataSource type="POOLED">
                <property name="driver" value="${driver}"/>
                <property name="url" value="${url}"/>
                <property name="username" value="${username}"/>
                <property name="password" value="${password}"/>
            </dataSource>

        </environment>

    </environments>

    <!--每一个Mapper.XML都需要在Mybatis核心配置文件中注册!-->
    <mappers>
        <!-- 使用相对于类路径的资源引用 -->
<!--        <mapper resource="com/loey/mapper/UserMapper.xml"/>-->

        <!-- 使用映射器接口实现类的完全限定类名 需要配置文件名称和接口名称一致,并且位于同一目录下 -->
<!--        <mapper class="com.loey.mapper.UserMapper"/>-->

        <!-- 将包内的映射器接口实现全部注册为映射器 但是需要配置文件名称和接口名称一致,并且位于同一目录下 -->
        <package name="com.loey.mapper"/>
    </mappers>

</configuration>

常用 database.properties

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis?\
  useSSl=true&amp;useUnicode=true&amp;characterEncoding=UTF-8
username=root
password=1127

常用log4j.properties配置

#将等级为DEBUG的日志信息输出到console和file这两个目的地,console和file的定义在下 面的代码
log4j.rootLogger=DEBUG,console,file

#控制台输出的相关设置
log4j.appender.console = org.apache.log4j.ConsoleAppender
log4j.appender.console.Target = System.out
log4j.appender.console.Threshold=DEBUG
log4j.appender.console.layout = org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=[%c]-%m%n

#文件输出的相关设置
log4j.appender.file = org.apache.log4j.RollingFileAppender
log4j.appender.file.File=./log/loey.log
log4j.appender.file.MaxFileSize=10mb
log4j.appender.file.Threshold=DEBUG
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=[%p]%d{yy-MM-dd}][%c]%m%n

#日志输出级别
log4j.logger.org.mybatis=DEBUG
log4j.logger.java.sql=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.ResultSet=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG

常用工具类:

MyBatisUtils:与数据库连接

package com.loey.utils;

        import org.apache.ibatis.io.Resources;
        import org.apache.ibatis.session.SqlSession;
        import org.apache.ibatis.session.SqlSessionFactory;
        import org.apache.ibatis.session.SqlSessionFactoryBuilder;

        import java.io.IOException;
        import java.io.InputStream;

public class MyBatisUtils {

    private static  SqlSessionFactory sqlSessionFactory;

    static{
        try {
            //使用Mybatis第一步:获取sqlSessionFactory对象
            String resource = "mybatis-config.xml";
            InputStream inputStream = Resources.getResourceAsStream(resource);
            sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    //既然有了 SqlSessionFactory,顾名思义,我们就可以从中获得 SqlSession 的实例了。
    // SqlSession 完全包含了面向数据库执行 SQL 命令所需的所有方法。
    //获取sqlSession连接
    public static SqlSession getSqlSession(){
        return sqlSessionFactory.openSession();
    }


}

IDutil工具类:随机生成ID

public class IDUtils {

    public static String getId(){
        return UUID.randomUUID().toString().replaceAll("-","");
    }
}

常用UserMapper.xml配置

普通版:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--namespace=绑定一个对应的mapper/Mapper接口-->
<mapper namespace="com.loey.mapper.UserMapper">

</mapper>

举例版:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--namespace=绑定一个对应的mapper/Mapper接口-->
<mapper namespace="com.loey.mapper.UserMapper">

    <!--在当前Mapper.xml中使用低级配置二级缓存-->
<!--    <cache/>-->


<!--二级缓存的高级配置
创建了一个 FIFO 缓存,每隔 60 秒刷新,最多可以存储结果对象或列表的 512 个引用,
而且返回的对象被认为是只读的,因此对它们进行修改可能会在不同线程中的调用者产生冲突。
LRU – 最近最少使用:移除最长时间不被使用的对象。
    FIFO – 先进先出:按对象进入缓存的顺序来移除它们。
    SOFT – 软引用:基于垃圾回收器状态和软引用规则移除对象。
    WEAK – 弱引用:更积极地基于垃圾收集器状态和弱引用规则移除对象。
    默认的清除策略是 LRU-->
    <cache
        eviction="FIFO"
        flushInterval="60000"
        size="512"
        readOnly="true"/>
        
    <!--select查询语句-->
    <select id="getAllUser" resultType="com.loey.pojo.User">
        select * from user
    </select>
    
<!--结果集映射 -->
    <resultMap id="UserMap" type="User">
        <!--id为主键 -->
        <id column="id" property="id"/>
        <!--column是数据库的列名,property是对应实体类的属性名 -->
        <result column="name" property="name"/>
        <result column="pwd" property="password"/>
    </resultMap>
    <select id="getAllUser1" resultMap="UserMap">
        select  id,name,pwd from user where id = #{id}
    </select>
    
    <select id="selectUserById" resultType="com.loey.pojo.User">
        select * from user where id = #{id}
    </select>
    
<!--select分页语句-->
    <select id="pageByLimit" parameterType="map" resultType="user">
        select * from user limit #{startIndex},#{pageSize}
    </select>
    
   <select id="getUserLike" resultType="com.loey.pojo.User">
        <!--select * from user where name like #{value}-->
         select * from user where name like concat ('%',#{value},'%')
    </select>

    <insert id="insertUser" parameterType="com.loey.pojo.User">
        insert into user(name,pwd) values(#{name},#{pwd})
    </insert>

    <update id="updateUser" parameterType="com.loey.pojo.User">
        update user set name=#{name},pwd=#{pwd} where id = #{id}
    </update>

    <delete id="deleteUser" parameterType="int">
        delete from user where id = #{id}
    </delete>

</mapper>

注解版

【注意】利用注解开发就不需要XXXmapper.xml映射文件了 ,其余跟xml配置版差不多.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值