-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VSCodeの拡張機能一覧についてドキュメントに記載する (#1368)
* VSCodeにインストールすべき拡張機能について説明を追加 * 事前準備のページを正しい配置と遷移に修正 * 拡張機能の説明を移動
- Loading branch information
1 parent
d2e647e
commit fe07d66
Showing
5 changed files
with
81 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
documents/contents/guidebooks/how-to-develop/java/preparation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
title: Java 編 | ||
description: バックエンドで動作する Java アプリケーションの 開発手順を解説します。 | ||
--- | ||
|
||
# 事前準備 {#top} | ||
|
||
## ローカル開発環境の構築 {#create-dev-environment} | ||
|
||
ローカル開発環境の構築について [ローカル開発環境の構築](../local-environment/index.md) を参照し、最低限必要なソフトウェアをインストールしてください。 | ||
|
||
## Visual Studio Code の拡張機能インストール {#install-extensions} | ||
|
||
Visual Studio Code を利用する場合、 Java アプリケーションを開発するために以下の拡張機能をインストールします。 | ||
|
||
- [Spring Boot Extension Pack :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=vmware.vscode-boot-dev-pack){ target=_blank } | ||
|
||
Spring Boot アプリケーションの開発とデプロイを提供します。 | ||
|
||
- [Extension Pack for Java :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-pack){ target=_blank } | ||
|
||
Java アプリケーションの作成、テスト、デバッグ等の基本的な機能を提供します。 | ||
|
||
<!-- textlint-disable ja-technical-writing/sentence-length --> | ||
|
||
アプリケーションの起動で利用する [Gradle for Java :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-gradle){ target=_blank } やコード補完やエラーレポートを提供する [Language Support for Java(TM) by Red Hat :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=redhat.java){ target=_blank } といったの拡張機能が追加でインストールされます。 | ||
|
||
<!-- textlint-enable ja-technical-writing/sentence-length --> | ||
|
||
- [Lombok Annotations Support for VS Code :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-lombok){ target=_blank } | ||
|
||
Java アプリケーションにおける Lombok アノテーションのサポートを提供します。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters