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.

Thymeleaf + Springboot + Mybatis + MySQL + VSCodeー環境準備

Posted at

1. MySQL構築

1.1. Install

参照サイト:MySQLのインストール手順 | 分かりやすく図解で説明

1.2. Create Database

1.2.1. MySQL Workbench設定

1.2.1.1. 接続コネクション追加

MySQL Workbenchを開く、本ページの「MySQL Connection」右「⊕」をクリックして、下記設定情報を設定して、接続コネクションを追加する

接続コネクション
No. 属性
1 Connection Name localhost
2 Connection Method standard(TCP/IP)
3 Hostname localhost
4 Port 3306
5 Username root
6 Password※ 「1.1. Install」で設定したパスワード
※ 「Password」右の「Store in Vault」をクリックして、パスワードを入力する。

1.2.1.2. 業務データベース作成

SQLtabを開いて、下記コマンドを実行して、データベースを作る

carete database
CREATE DATABASE training;

2. JDK Install

ダウンロードサイト: Download x64 Compressed Archive
※ダウンロードしたら、作業フォルダに解凍する
cmdを起動して、JDKの解凍ディレクトリに利用して、Javaのバージョンを確認する。
コマンド例:

cd JDKの解凍ディレクトリ
java.exe -version

3. IDE構築

3.1. IDE Installer

ダウンロードサイト:Visual Studio Code をダウンロードする

3.1.1. Extensions

3.1.1.1. How to Install

参照サイト:Install Visual Studio Code extensions

3.1.1.2. 必要なExtensions

Extension Pack for Java
Popular extensions for Java development that provides Java IntelliSense, debugging, testing, Maven/Gradle support, project management and more
Spring Boot Extension Pack
A collection of extensions for developing Spring Boot applications

3.2. IDE Setting

3.2.1. 実行環境のJDK設定

「Ctrl + ,」を押して、「Settings」を開く。
実行環境のJDKを設定する
「Settings」の「Search settings」欄に「jdk」を入力して、「Java > Configuration: Runtimes」下の「Edit in settings.json」リンクをクリックして、下記設置を「java.configuration.runtimes」後ろの[]に貼り付ける
settings.json
        {
            "name": "JavaSE-17",
            "path": "JDKの解凍ディレクトリ※",
            "default": true
        }

※JDKの解凍ディレクトリは「2. JDK Install」の時、JDKの解凍ディレクトリのフルパス(パスの\を/に変換する)。

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?