[Environment construction] Build a Java development environment with VS Code!
I tried to build a Java development environment with Visual Studio Code (VSCode).
Development environment
OS : Windows10
VSCode : Version 1.52.1
### procedure
-[JDK] Installation
-[Java Extension Pack] installation
--Pass the path to [JDK] in [Java.home]
## Install the JDK (Java SE Development Kit)!
Access [JDK15 Download Page](https://www.oracle.com/java/technologies/javase-jdk15-downloads.html)
Download ** [jdk-15.0.1_windows-x64_bin.exe] ** for Windows x64.
After that, follow the instructions on the screen and install with the default settings.

## Install the extension Java Extension Pack
Enter "Java Extension Pack" in the extension search and install.

## Write java.home and pass the path to JDK
** Open "VScode Settings" **

Enter ** "java.home" ** in the search form
Click on the part that says ** [settings.json] **

Since the json file can be opened, according to the installed version
Enter the path below.
{
"java.home": "C:/Program Files/Java/jdk-15.0.1",
}
This completes the settings.
Restart VSCode and the open environment construction is complete!
## reference
[Create a Java (debugging) development environment with Visual Studio Code](https://codeaid.jp/vscode-debug/)