19
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Spring Bootのgradlewコマンドの簡単な使い方

Last updated at Posted at 2021-07-11

概要

spring initializrで生成したプロジェクトには、gradlewというファイルが付属している。これは開発でGradleを使うためのWrapperで、アプリケーションをビルドしたり実行することができる。このコマンドの基本的な使い方を説明する。

また、Gradleがインストールされていない環境でも、このファイルがあればビルド、実行をすることが可能。

関連

gradlew build

build.gradleがある階層でこのコマンドを実行するとbuildが実行され、build/libs/の下にjarファイルが生成される。

buildする。

$ gradlew build

生成されたファイルを実行すると、localhost:8080でページにアクセスできる。

$ java -jar build/libs/helloworld-0.0.1-SNAPSHOT.jar 

gradlew bootRun

前項のbuildと実行をまとめてやってくれるのがこのコマンド。bootRunを実行してlocalhost:8080にアクセスするとページを閲覧できる。

$ ./gradlew bootRun

gradlew clean

このコマンドを実行すると、buildされたファイルを削除することができる。

build

$ gradlew build
$ ls -1 ./build
bootJarMainClassName
classes
generated
libs
reports
resources
test-results
tmp

clean

$ ./gradlew clean
$ ls ./build
ls: ./build: No such file or directory

buildディレクトリごと削除される。

参考

19
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
19
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?