[JAVA] Exemple de configuration d'IntellijIDEA + SpringBoot + Gradle + MyBatis

Attribut Morimori.

IDEA est la communauté 2019.3.1 La version Java est 11 Spring Boot est la version 2.2.4. Gradle est 5.2.1 Mon Batis est 3.5.2 (mybatis-spring-boot-starter:2.1.0)

build.gradle


group 'com.xxx.xxx'
version '0.1-SNAPSHOT'

// Spring Boot ver:2.2.4
buildscript {
    def springBootVersion = '2.2.4.RELEASE'
    repositories { mavenCentral() }
    dependencies {
        classpath ("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

//Plug-in Java
apply plugin:'java'
//Paramètres du plug-in Gradle qui génèrent divers fichiers de paramètres IDE
apply plugin:'idea'
apply plugin:'eclipse'
//Plug-in lié à Spring Boot
apply plugin:'org.springframework.boot'
apply plugin:'io.spring.dependency-management'
//Fichier war en sortie
apply plugin: 'war'

//Version Java
def javaVersion = JavaVersion.VERSION_11
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

//Dépôt de source de bibliothèque dépendante
repositories { mavenCentral() }
//Bibliothèques dépendantes
dependencies {
    // SpringBoot
    compile("org.postgresql:postgresql")
    compile("org.springframework.boot:spring-boot-devtools")
    compile("org.springframework.boot:spring-boot-starter-web")
    compile("org.springframework.boot:spring-boot-starter-jdbc")
    testCompile("org.springframework.boot:spring-boot-starter-test")
    // JUnit
    testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.2.0'
    testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.2.0'
    testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.2.0'
    // GSON
    compile("com.google.code.gson:gson")
    // myBatis
    compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:2.1.0")
    compile("ch.qos.logback:logback-classic")
    testCompile("org.mybatis.spring.boot:mybatis-spring-boot-starter-test:2.1.0")
}
test {
    //Utilisez JUnit 5 lors de la construction de gradle
    useJUnitPlatform()
    //Nombre de threads d'exécution parallèle pour le test
    maxParallelForks = 4
    filter{
        //Je ne peux pas le montrer, alors je me couche
    }
}

//Version de version gradle.Obtenir des propriétés et définir
def applicationVersion = project.properties['release.version']
version = applicationVersion
def springBootApplicationName = 'hogehoge'
bootJar {
    archiveBaseName  = springBootApplicationName
    version = applicationVersion
}
bootWar {
    archiveBaseName  = springBootApplicationName
    version = applicationVersion
}

J'espère que vous le trouverez utile car il possède de nombreux attributs.

Recommended Posts

Exemple de configuration d'IntellijIDEA + SpringBoot + Gradle + MyBatis
Exemple d'utilisation de vue.config.js
Valeur de réglage de log4jdbc.properties
Comment modifier la valeur de réglage de Springboot Hikari CP