`

mapperLocations与MapperScannerConfigurer

 
阅读更多

<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">  
       
    <!-- 配置数据源、事务管理策略、开启声明式事务   
    (统一由spring管理mapper类型和SqlSessionDaoSupport类型的DAO事务) -->  
    <jdbc:embedded-database id="dataSource">  
        <jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql" />    
        <jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql" />    
    </jdbc:embedded-database>  
  
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">  
        <property name="dataSource" ref="dataSource" />    
    </bean>  
  
    <tx:annotation-driven />    
       
    <!-- 定义 myBatis的sqlSessionFactory    
    1、当使用MapperScannerConfigurer时不需要configLocation定义(   
        1:mapperLocations可以批量载入mapper,但是MapperScannerConfigurer扫描mapper后不会将已存在的mapper加入到Configuration中   
        2:也可以定义configLocation文件,在里面设置settings和typeAliases等来覆写默认的配置   
        3:如果使用了configLocation文件,并且里面也定义了mappers,那么在MapperScannerConfigurer扫描动作中就不会加入已经存在的mapper了   
            (同mapperLocations情况一样)   
        4:综上所述:建议采用扫描来完成mapper的注册,并且在sqlSessionFactory的bean配置中不需要设置mapperLocations,   
            如果设置了configLocation文件,那么configLocation文件里也不需要再设置mapper了   
    -->  
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  
        <property name="dataSource" ref="dataSource" />    
        <property name="configLocation" value="classpath:mybatis-config.xml" />    
    </bean>  
  
    <!--  扫描 mappers 自动配置 -->    
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">  
    <property name="basePackage" value="mapper" />    
    </bean>  
           
    <!--  直接声明mapper的代理实现:!!可能会与扫描动作重复,建议采用扫描来完成 -->    
    <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean">  
        <property name="mapperInterface" value="org.mybatis.spring.sample.mapper.UserMapper" />    
        <property name="sqlSessionFactory" ref="sqlSessionFactory" />    
    </bean>  
  
    <!--  继承 SqlSessionDaoSupport,在dao里可以直接调用mapper xml里的方法,因为所有mapper已经扫描并注册到Configuration里了。   
     SqlSessionDaoSupport模式和mapper接口模式的事务是一致的,由spring管理-->  
    <bean id="userDao" class="dao.UserDaoImpl">  
        <property name="sqlSessionFactory" ref="sqlSessionFactory" />    
    </bean>  
  
  
    <!--  service示例 -->  
    <bean id="fooService" class="service.FooServiceDaoImpl">  
        <property name="userDao" ref="userDao" />    
        <!-- 或者使用userMapper -->  
        <property name="userMapper" ref="userMapper" />    
    </bean>  
        
  
</beans>  

分享到:
评论

相关推荐

    mybatis_spring(mapper代理开发方法的整合整合项目)

    同时,对于Mapper接口,我们需要定义一个MapperScannerConfigurer,扫描指定包下的Mapper接口,让Spring自动创建对应的MapperFactoryBean。 2. **基于注解的整合:** 使用Java配置代替XML配置,通过@Configuration...

    spring与mybatis三种整合方法

    以上三种方式都可以实现Spring与MyBatis的整合,具体选择哪种方法取决于项目的需求和个人偏好。通常,如果项目较小,XML配置文件易于管理,可以选择第一种或第二种方法;而随着项目规模的扩大,Java配置会更加灵活且...

    MyBatis异常-Property 'configLocation' not specified, using default MyBatis Configuration

    MyBatis的核心配置文件是`mybatis-config.xml`,其中包含了数据库连接信息、事务管理以及Mapper接口与XML映射文件的关联等设置。当MyBatis尝试初始化时,它会查找`configLocation`属性来确定配置文件的位置。 在...

    02 mybatis进阶1

    - **mapperLocations**:指定XML映射文件的位置,可以使用Ant风格路径。 - **configLocation**:配置MyBatis的全局配置文件路径,可以在此配置MyBatis settings。 - **typeAliasesPackage**:设置类的别名包,使得在...

    myBatis系列之六:与SpringMVC集成

    myBatis-Spring通过MapperScannerConfigurer扫描到Mapper接口,自动将其与XML文件中的SQL绑定,使得我们在Service层可以直接调用Mapper方法。 总结来说,myBatis与SpringMVC的集成涉及到以下关键点: 1. 配置...

    spring,springmvc,mybatis基于xml文件整合(2)

    为了将Mapper接口与XML配置文件关联起来,我们需要在Spring的配置文件中声明`SqlSessionFactory`和`MapperScannerConfigurer`。`SqlSessionFactory`将负责读取我们的MyBatis配置,并生成SqlSession对象。`...

    如何将mybatis配置到springmvc中

    再通过`mapperLocations`指定Mapper XML文件的位置,这样MyBatis可以自动扫描并加载这些文件。 5. 扫描Mapper接口: 创建一个`MapperScannerConfigurer` bean,用于扫描指定包下的Mapper接口,并将它们转换为`...

    myibatis3和springMVC整合

    MyBatis3与SpringMVC的整合是Java开发中常见的技术组合,主要用于构建高效、灵活的Web应用程序。这种整合能够充分利用MyBatis的SQL映射功能和SpringMVC的MVC设计模式,实现数据访问层与业务逻辑层的解耦。 在...

    ibatis和spring整合开发 例子

    MapperScannerConfigurer则会扫描指定包下的Mapper接口,自动将它们与XML配置的Mapper文件关联起来。 在Spring配置文件中,你可以这样设置: ```xml &lt;!-- 数据库连接配置 --&gt; &lt;!-- 配置Mapper文件的位置 -...

    mybatis 加载配置文件的方法(两种方式)

    在 Spring 配置文件中,我们可以使用 sqlSessionFactory 的 mapperLocations 属性来加载 MyBatis 的配置文件。具体实现代码如下所示: ```xml &lt;!-- SessionFactory --&gt; &lt;!-- 映射文件路径,可以集中写到一个...

    Spring与Mybatis整合

    - `mapperLocations`:Mybatis映射文件的位置,通常是XML映射器文件。 - `typeAliasesPackage`:定义类型别名的包路径,这样就无需在配置文件中单独声明。 **3. 数据处理的四种方式** 在Spring中使用Mybatis进行...

    Spring整合Mybatis源代码

    &lt;property name="mapperLocations" value="classpath:mapper/*.xml"/&gt; ``` 接下来,`MapperScannerConfigurer`是Spring扫描Mapper接口的工具,它会根据指定的包名自动扫描并注册Mapper接口,使得Spring可以自动...

    KingbaseES客户端编程开发框架-MyBatis-Plus

    &lt;property name="mapperLocations" value="classpath*:mapper/*.xml"/&gt; &lt;bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"&gt; ``` #### 六、注意事项 在使用**KingbaseES客户端编程开发框架-...

    SpringBoot-Mybatis-master.zip

    可以在application.yml或application.properties中设置Mybatis的全局参数,如typeAliasesPackage(别名包)、mapperLocations(Mapper XML文件位置)等。 8. **使用@Select、@Insert、@Update和@Delete注解** ...

    spring与mybatis整合配置文档

    &lt;property name="mapperLocations" value="classpath:mapper/*.xml"/&gt; ``` 同时,为了提高性能,还可以配置批量执行的`SqlSession`: ```xml ``` ##### 2.4 Mapper扫描器配置 使用`...

    mybatis-spring-1.0.2-reference.pdf

    ### MyBatis-Spring 1.0.2:Spring与MyBatis的无缝集成 #### 1. 引言 ##### 1.1 MyBatis-Spring 是什么? MyBatis-Spring是一款专为简化MyBatis与Spring框架集成而设计的库。它通过提供一系列工具类和配置选项,...

    mybatis整合spring时 的核心jar包

    例如,SqlSessionFactory可以通过`org.mybatis.spring.SqlSessionFactoryBean`创建,而Mapper接口可以通过`org.mybatis.spring.mapper.MapperScannerConfigurer`扫描并自动注册。 同时,MyBatis的Mapper XML文件...

    MyBatis+Spring的增、删、查、改以及分页和事务管理

    数据源配置用于连接数据库,SqlSessionFactoryBean是MyBatis的工厂类,负责创建SqlSession对象,而MapperScannerConfigurer则会扫描指定包下所有的Mapper接口,将其与XML配置文件中的SQL映射关联起来。 以下是一个...

    MyBatis-Spring配置的讲解

    MyBatis-Spring整合是将Spring框架与MyBatis持久层框架紧密结合的一种方式,它可以简化在Spring中使用MyBatis的配置,使两者的集成更加便捷。以下是对MyBatis-Spring配置的详细讲解: 1. **SqlSessionFactoryBean...

Global site tag (gtag.js) - Google Analytics