タグ

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

  • 関連タグはありません

タグの絞り込みを解除

Intellijに関するzima0314のブックマーク (1)

  • Intellij IDEAの環境にSpring Boot DevToolsを導入する

    はじめに Intellij IDEAの環境にSpring Boot DevToolsを導入したので、導入方法を紹介します。Spring Boot DevToolsはTomcatを再起動せずにアプリケーションだけを再起動する機能があり、コードの修正、確認のサイクルを速めることができます。 前提 Gradle 5.4.1 Spring Boot 2.1.6 手順 依存関係の追加 build.gradleファイルに以下の記述を追加します。 configurations { developmentOnly runtimeClasspath { extendsFrom developmentOnly } } dependencies { developmentOnly("org.springframework.boot:spring-boot-devtools") } Intellij IDEAの設

  • 1