亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot集成MyBatis的方法

發布時間:2020-08-27 23:42:05 來源:腳本之家 閱讀:225 作者:isea533 欄目:編程語言

Spring Boot 集成MyBatis

在集成MyBatis前,我們先配置一個druid數據源。

Spring Boot 集成druid

druid有很多個配置選項,使用Spring Boot 的配置文件可以方便的配置druid

application.yml配置文件中寫上:

spring:
  datasource:
    name: test
    url: jdbc:mysql://192.168.16.137:3306/test
    username: root
    password:
    # 使用druid數據源
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.jdbc.Driver
    filters: stat
    maxActive: 20
    initialSize: 1
    maxWait: 60000
    minIdle: 1
    timeBetweenEvictionRunsMillis: 60000
    minEvictableIdleTimeMillis: 300000
    validationQuery: select 'x'
    testWhileIdle: true
    testOnBorrow: false
    testOnReturn: false
    poolPreparedStatements: true
    maxOpenPreparedStatements: 20

這里通過type: com.alibaba.druid.pool.DruidDataSource配置即可!

Spring Boot 集成MyBatis

Spring Boot 集成MyBatis有兩種方式,一種簡單的方式就是使用MyBatis官方提供的:

mybatis-spring-boot-starter

另外一種方式就是仍然用類似mybatis-spring的配置方式,這種方式需要自己寫一些代碼,但是可以很方便的控制MyBatis的各項配置。

一、mybatis-spring-boot-starter方式

pom.xml中添加依賴:

<dependency>
  <groupId>org.mybatis.spring.boot</groupId>
  <artifactId>mybatis-spring-boot-starter</artifactId>
  <version>1.0.0</version>
</dependency>

mybatis-spring-boot-starter依賴樹如下:

Spring Boot集成MyBatis的方法

  • 其中mybatis使用的3.3.0版本,可以通過: <mybatis.version>3.3.0</mybatis.version>屬性修改默認版本。
  • mybatis-spring使用版本1.2.3,可以通過: <mybatis-spring.version>1.2.3</mybatis-spring.version>修改默認版本。

在application.yml中增加配置:

mybatis: 
 mapperLocations: classpath:mapper/*.xml
 typeAliasesPackage: tk.mapper.model 

除了上面常見的兩項配置,還有:

  • mybatis.config:mybatis-config.xml配置文件的路徑
  • mybatis.typeHandlersPackage:掃描typeHandlers的包
  • mybatis.checkConfigLocation:檢查配置文件是否存在
  • mybatis.executorType:設置執行模式(SIMPLE, REUSE, BATCH),默認為SIMPLE

二、mybatis-spring方式

這種方式和平常的用法比較接近。需要添加mybatis依賴和mybatis-spring依賴。

然后創建一個MyBatisConfig配置類:

/**
 * MyBatis基礎配置
 */
@Configuration
@EnableTransactionManagement
public class MyBatisConfig implements TransactionManagementConfigurer {
  @Autowired
  DataSource dataSource;
  @Bean(name = "sqlSessionFactory")
  public SqlSessionFactory sqlSessionFactoryBean() {
    SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
    bean.setDataSource(dataSource);
    bean.setTypeAliasesPackage("tk.mybatis.springboot.model");
    //分頁插件
    PageHelper pageHelper = new PageHelper();
    Properties properties = new Properties();
    properties.setProperty("reasonable", "true");
    properties.setProperty("supportMethodsArguments", "true");
    properties.setProperty("returnPageInfo", "check");
    properties.setProperty("params", "count=countSql");
    pageHelper.setProperties(properties);
    //添加插件
    bean.setPlugins(new Interceptor[]{pageHelper});
    //添加XML目錄
    ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
    try {
      bean.setMapperLocations(resolver.getResources("classpath:mapper/*.xml"));
      return bean.getObject();
    } catch (Exception e) {
      e.printStackTrace();
      throw new RuntimeException(e);
    }
  }
  @Bean
  public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) {
    return new SqlSessionTemplate(sqlSessionFactory);
  }
  @Bean
  @Override
  public PlatformTransactionManager annotationDrivenTransactionManager() {
    return new DataSourceTransactionManager(dataSource);
  }
}

上面代碼創建了一個SqlSessionFactory和一個SqlSessionTemplate,為了支持注解事務,增加了@EnableTransactionManagement注解,并且反回了一個PlatformTransactionManagerBean

另外應該注意到這個配置中沒有MapperScannerConfigurer,如果我們想要掃描MyBatis的Mapper接口,我們就需要配置這個類,這個配置我們需要單獨放到一個類中。

/**
 * MyBatis掃描接口
 */
@Configuration
//TODO 注意,由于MapperScannerConfigurer執行的比較早,所以必須有下面的注解
@AutoConfigureAfter(MyBatisConfig.class)
public class MyBatisMapperScannerConfig {
  @Bean
  public MapperScannerConfigurer mapperScannerConfigurer() {
    MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer();
mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactory");
    mapperScannerConfigurer.setBasePackage("tk.mybatis.springboot.mapper");
    return mapperScannerConfigurer;
  }
}

這個配置一定要注意@AutoConfigureAfter(MyBatisConfig.class),必須有這個配置,否則會有異常。原因就是這個類執行的比較早,由于sqlSessionFactory還不存在,后續執行出錯。

做好上面配置以后就可以使用MyBatis了。

關于分頁插件和通用Mapper集成

分頁插件作為插件的例子在上面代碼中有。

通用Mapper配置實際就是配置MapperScannerConfigurer的時候使用tk.mybatis.spring.mapper.MapperScannerConfigurer即可,配置屬性使用Properties

Spring Boot集成MyBatis的基礎項目

我上傳到github一個采用第二種方式的集成項目,并且集成了分頁插件和通用Mapper,項目包含了簡單的配置和操作,僅作為參考。

項目地址:https://github.com/abel533/MyBatis-Spring-Boot

分頁插件和通用Mapper的相關信息可以通過上面地址找到。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

元朗区| 泊头市| 平邑县| 延川县| 高碑店市| 连江县| 新化县| 星子县| 芜湖市| 郁南县| 瑞金市| 江达县| SHOW| 南汇区| 桐梓县| 乌兰察布市| 雷波县| 柳河县| 通州市| 开江县| 沙雅县| 青海省| 台中市| 房产| 深水埗区| 金塔县| 巴塘县| 菏泽市| 兴国县| 江源县| 兴海县| 治县。| 拜泉县| 桂平市| 绥中县| 富民县| 石城县| 丹凤县| 大洼县| 咸宁市| 仪陇县|