タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

MyBatisに関するabetomotomoのブックマーク (4)

  • mybatis-spring

    トランザクション これは MyBatis-Spring を使う主な理由の一つでもありますが、MyBatis-Spring を使うと MyBatis の処理を Spring が管理するトランザクションの一部として実行できるようになります。 MyBatis-Spring は、MyBatis のために新しいトランザクションマネージャーを生成するのではなく、Spring が生成した DataSourceTransactionManager を利用します。 Spring のトランザクションマネージャーが定義されていれば、通常の手順で Spring のトランザクションを利用することができます。@Transactional アノテーションと AOP 形式での指定、どちらも利用可能です。 トランザクション内では SqlSession が一つ生成され、トランザクションの生存期間中はこの SqlSession

  • mybatis-spring-boot-starterの使い方 - Qiita

    今回は2015年11月にバージョン1.0.0がリリースされ、2016年4月19日に1.1がリリースされたmybatis-spring-boot-starterの使い方を紹介します。 MyBatisをSpring Boot上で使う際は、mybatis-springから提供されているSqlSessionFactoryBeanやSqlSessionTemplateのBean定義を開発者が行う必要がありましたが、mybatis-spring-boot-starterの登場によりこれらのBean定義は自動コンフィギュレーションによって解決されます まずは、実際にmybatis-spring-boot-starterを利用して簡単なCLI(Command Line Interface)アプリケーションを作ってみます 。 Note: 2019/7/16: 追記 JDK 13で導入予定(現時点ではPrev

    mybatis-spring-boot-starterの使い方 - Qiita
  • mybatis-spring-boot-autoconfigure – Introduction

    Translations Users can read about MyBatis-Spring-Boot-Starter in the following translations: English 简体中文 What is MyBatis-Spring-Boot-Starter? The MyBatis-Spring-Boot-Starter help you build quickly MyBatis applications on top of the Spring Boot. By using this module you will achieve: Build standalone applications Reduce the boilerplate to almost zero Less XML configuration Requirements The MyBatis

  • Spring Boot MyBatis-Spring - NOTEです

    1. データソースの設定 † データベースの接続情報をapplication.propertiesに記述する。 今回はHSQLDBを別途インストールしdevdbという名称でデータベースを作成。 サーバーモードで起動している。 (src/main/resources/application.properties抜粋) spring.datasource.driver-class-name=org.hsqldb.jdbcDriver spring.datasource.url=jdbc:hsqldb:hsql://localhost/devdb spring.datasource.username=sa spring.datasource.password= ↑ 2. ライブラリを取得する。 † build.gradleにmybatisとmybatis-springを追加する。 spring-

  • 1