Spring Boot+Kotlin MyBatisを統合する方法教程
前言
最近はjpaを使うことが多くて、mybatisのxml方式を見てsqlを書くのは気持ちが悪いです。インタフェースの定義とマッピングは別々のファイルにあります。
そこでSpring Bootを使ってMyBatisを統合し、コメントにsqlを書きます。
「私の最初のKotlinアプリケーション」を参照してください。
プロジェクトを作成して、build.gradleファイルに依存を導入します。
MysqlにUserテーブルを作成し、id(BIGINT)、username(VRCHAR)、age(INT)フィールドを含む。同時に、マッピングオブジェクトUserを作成します。
以上はこの文章の全部の内容です。本文の内容は皆さんの学習や仕事に対して一定の参考となる学習価値を持っています。質問があれば、メッセージを書いて交流してください。ありがとうございます。
最近はjpaを使うことが多くて、mybatisのxml方式を見てsqlを書くのは気持ちが悪いです。インタフェースの定義とマッピングは別々のファイルにあります。
そこでSpring Bootを使ってMyBatisを統合し、コメントにsqlを書きます。
「私の最初のKotlinアプリケーション」を参照してください。
プロジェクトを作成して、build.gradleファイルに依存を導入します。
compile "org.mybatis.spring.boot:mybatis-spring-boot-starter:$mybatis_version"
compile "mysql:mysql-connector-java:$mysql_version"
完全なbuild.gradleファイル
group 'name.quanke.kotlin'
version '1.0-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.2.10'
ext.spring_boot_version = '1.5.4.RELEASE'
ext.springfox_swagger2_version = '2.7.0'
ext.mysql_version = '5.1.21'
ext.mybatis_version = '1.1.1'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath("org.springframework.boot:spring-boot-gradle-plugin:$spring_boot_version")
// Kotlin SpringBoot , open
classpath("org.jetbrains.kotlin:kotlin-noarg:$kotlin_version")
classpath("org.jetbrains.kotlin:kotlin-allopen:$kotlin_version")
}
}
apply plugin: 'kotlin'
apply plugin: "kotlin-spring" // See https://kotlinlang.org/docs/reference/compiler-plugins.html#kotlin-spring-compiler-plugin
apply plugin: 'org.springframework.boot'
apply plugin: "kotlin-jpa" //https://stackoverflow.com/questions/32038177/kotlin-with-jpa-default-constructor-hell
jar {
baseName = 'chapter11-6-5-service'
version = '0.1.0'
}
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile("org.jetbrains.kotlin:kotlin-reflect:${kotlin_version}")
compile "org.mybatis.spring.boot:mybatis-spring-boot-starter:$mybatis_version"
compile "mysql:mysql-connector-java:$mysql_version"
testCompile "org.springframework.boot:spring-boot-starter-test:$spring_boot_version"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
appication.ymlファイルにmysqlの接続を配置します。
spring:
datasource:
url: jdbc:mysql://localhost:3306/test
username: root
password: 123456
driver-class-name: com.mysql.jdbc.Driver
MyBatisを使うMysqlにUserテーブルを作成し、id(BIGINT)、username(VRCHAR)、age(INT)フィールドを含む。同時に、マッピングオブジェクトUserを作成します。
data class User(var id: Long? = -1, var username: String = "", val age: Int? = 0)
Userマッピングを作成する操作UserMapperは、後続ユニットのテスト検証のため、挿入とクエリー操作を実現します。
import name.quanke.kotlin.chaper11_6_5.entity.User
import org.apache.ibatis.annotations.Insert
import org.apache.ibatis.annotations.Mapper
import org.apache.ibatis.annotations.Param
import org.apache.ibatis.annotations.Select
/**
* Created by http://quanke.name on 2018/1/11.
*/
@Mapper
interface UserMapper {
@Select("SELECT * FROM USER WHERE USERNAME = #{username}")
fun findByUserName(@Param("username") username: String): List<User>
@Insert("INSERT INTO USER(USERNAME, PASSWORD) VALUES(#{username}, #{password})")
fun insert(@Param("username") username: String, @Param("password") password: String): Int
}
スタートSpring Bootクラス
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication
/**
* Created by http://quanke.name on 2018/1/9.
*/
@SpringBootApplication
class Application
fun main(args: Array<String>) {
SpringApplication.run(Application::class.java, *args)
}
ユニットテスト
import name.quanke.kotlin.chaper11_6_5.repository.UserMapper
import org.apache.commons.logging.LogFactory
import org.junit.Test
import org.junit.runner.RunWith
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.test.context.junit4.SpringRunner
import javax.annotation.Resource
/**
* Created by http://quanke.name on 2018/1/9.
*/
@RunWith(SpringRunner::class)
@SpringBootTest
class ApplicationTests {
val log = LogFactory.getLog(ApplicationTests::class.java)!!
@Resource
lateinit var userMapper: UserMapper
@Test
fun `MyBatis test"`() {
log.info(" 【quanke.name】 :${userMapper.findByUserName("quanke.name")}")
userMapper.insert("quanke", "123")
log.info(" 【quanke】 :${userMapper.findByUserName("quanke")}")
}
}
締め括りをつける以上はこの文章の全部の内容です。本文の内容は皆さんの学習や仕事に対して一定の参考となる学習価値を持っています。質問があれば、メッセージを書いて交流してください。ありがとうございます。