Mybatis分页的使用(三)

(邮箱:yxqpcphone@163.com   欢迎批评指正)

想要运行mybatis当然必要的就是进行各种各样的配置,我先说说这个spring的配置吧

  1. jdbc的配置,连接数据库,也就是配置驱动
  2. sqlSession的配置
  3. 事物的配置
  4. 扫描mapper

mybatis的spring配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!--c3p0驱动数据源连接池配置配置// FIXME 2018/7/13 -->
    <!--<context:property-placeholder location="classpath:mybatisSql.properties"/>-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close">
        <property name="url" value="jdbc:mysql://127.0.0.1:3306/shopping?characterEncoding=utf-8" />
        <property name="username" value="root" />
        <property name="password" value="root" />
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
        <property name="maxActive" value="10" />
        <property name="minIdle" value="5" />
    </bean>

    <!--事务提交-->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    <tx:annotation-driven transaction-manager="transactionManager"/>

    <!--spring管理sqlsession工厂,要配置号mybatis.xml文件-->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>

        <property name="configLocation" value="classpath:Mybatis.xml"/>

        <!--<property name="mapperLocations" value=""/>-->
    </bean>


    <!--
        使用包扫描的方式批量引入Mapper,并创建bean对象
        注意mapper的java文件和xml文件必须写在一个文件夹下面,maven比较特殊,注意了
        扫描后引用的时候可以使用类名,首字母小写.
     -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 指定要扫描的包的全路径名称,如果有多个包用英文状态下的逗号分隔 -->
        <property name="basePackage" value="mapper"/>
    </bean>
</beans>

我们其中是连接了mybatis的配置文件的,所以我们接下来就展示这个mybats的配置,其实如果不适用这个分页插件的话,不进行mybats的配置文件的配置也是可以进行使用的,但是我们使用了分页插件包,这个分页插件包就在这个mybatis.xml里面进行的配置。

Mybatis.xml的配置

<?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>
    <plugins>
        <!-- com.github.pagehelper 为 PageHelper 类所在包名 -->
        <plugin interceptor="com.github.pagehelper.PageHelper">
            <!-- 设置数据库类型 Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL 六种数据库-->
            <property name="dialect" value="mysql"/>
        </plugin>
    </plugins>
</configuration>

这个才是使用分页的关键,mybatis是没有分页这个选项的,所以我们需要使用到分页插件,当然个人也是可以根据使用的数据库自己写sql语句进行分页,而且自己写的要比使用分页插件要好的多,但是如果你使用过了数据库的方言的话,那么就限制了分页的使用了。所以我们这里使用分页插件进行的分页。

当这一切都写好之后就是我们自己来写了程序了。这个放到下一个章节来进行展示说明,也是我学习的时候,不会的地方……

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值