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

.gitmodulesでSpring Boot プロジェクト内のReactプロジェクトををサブモジュールとして管理できるようにする

Posted at

こちらのYoutubeでSpring Bootプロジェクト内でcreate-react-appを実行し、mavenのプラグインを使用することによって、Spring BootとReactを1つのプロジェクト内で管理することができるようになりました。しかしこれを完了した後GitHubにSpring Bootプロジェクトをまるまるプッシュしたところ、create-react-appで作成したディレクトリが別のプロジェクトとなっているため、GitHub上ではSpringのリポジトリを掘っていても中身がどうなっているか確認できませんでした。。そこでReactのプロジェクトをSpringのプロジェクトのサブモジュールとして認識させることによって、GitHub上でSpringのプロジェクトを掘っていきReactのプロジェクトに当たったときに、そこがリンクとしてReactのプロジェクトに飛べるようにしました。

以下の画像のように、プロジェクトのルートディレクトリに.gitmodulesファイルを作成し、ここにサブモジュールとして認識させたいリポジトリのURLとプロジェクト内のフォルダを指定します
スクリーンショット 2021-04-21 8.15.34.png

そうすることによって、以下の画像のようにSpringのプロジェクトをGithub上で掘っていたところ、Reactのプロジェクトがリンクされて、そのReactのプロジェクトのリポジトリに飛べるようになります
スクリーンショット 2021-04-21 8.17.53.png

これによってようやくSpring BootとReactの環境構築が完成しました。

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