0
1

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】Spring Bootでwebアプリを開発、独立したTomcatサーバーへwarを配置する場合の注意点

Last updated at Posted at 2020-04-09

####Spring Boot開発で、warのみ別APサーバーへ配置した経験がなかったので、調べた内容をメモしておきます。

以下、@TEBASAKIさん投稿の下記記事から抜粋させていただきました。
Spring Boot解説第4回(開発環境編:warファイル作成)
※Spring bootのバージョンにより、build.gradleの記述方法が異なる様なので注意ください。

####1. プログラム修正

  • ApplicationクラスへのSpringBootServletInitializerの継承追加。
  • SpringApplicationBuilderメソッドのオーバーライド。

####2. build.gradleの修正

  • Spring bootでwebアプリを開発する際、単純にビルドしてできたwarには、組み込みTomcatが含まれてしまう。これを回避する定義を追加する。

####3. Gradleタスク(war)実行

  • Gradleタスク(war)を実行して、warを作成する({ProjectName}\build\libs に生成される)。

####4. Tomcatへの配置

  • webappsフォルダにwarを置くだけ(自動で展開される)。
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?