1
0

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 1 year has passed since last update.

Java(maven)+Springboot+Docker環境でデプロイの一連の流れ

Last updated at Posted at 2021-12-25

きっかけ

・技術課題に取り組む際に環境構築やらでいっつも時間かかって、挙句、諦めよう・・・って思いがよぎったこともあったので雛形を作っておこう。

環境構築

1.環境構築自体はほとんど以下のページで完結するので省略。

注意点

・「mvnw package」実施する際はmvnwの一つ上の階層に移動してから ・java -jar target/< ここは適宜あわせる >.jar

ソース修正した後に反映させるには

プロジェクト階層直下で docker-compose build docker-compose exec < コンテナ名 > bash

bash-4.4# cd  < mvnwの一つ上の階層 >
bash-4.4# sh mvnw package
bash-4.4# java -jar target/< 適宜合わせる >.jar

・参考URL
どうせしょぼいミスなんだろうけどブラウザ上で見れない・・・って時は↓

DBeaverで変なエラー出た・・・って時は↓

なんか無駄な手順ありそうだな。とは思ってはいるのでご指摘あれば・・・。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?