「SpringBoot」@RestControllerのクラスインスタンスを返す
書式
@RestController
public class クラス名
使用例
@RestControllerpublic class MainController { @GetMapping("/ ...「SpringBoot」@RestControllerでlistを返す
書式
@RestController
public class クラス名
使用例
「Spring Boot」@Entity(エンティティ)、@Table(テーブル)、@Controller(コントローラ)アノテーションを使う方法
1.エンティティ(Entity)作成
@Entity@Table(name="emp_tbl")public class EmpData { @Id @Column(precision = 4,nullable = false, ...「Spring Tool Suite 4」ワークスペース全体の文字コードを設定する方法
操作方法
1.「ウィンドウ(W)」>「設定(P)」をクリックします。
2.「一般」->「ワークスペース」をクリックします。
3.「テキスト・ファイル・エンコード(T)」の欄にデフォルト(MS932 ...
SpringBoot 2.6でプロパティファイル(*.properties)を読み込む
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
1.ファイル情報の表示
src/main/resour ...
[Spring Boot]@ModelAttributeアノテーションのサンプル
1.Controller側クラスの作成
@ModelAttributeUserForm setUpForm(){ return new UserForm();}@RequestMapping(value ="/",method ...「Spring Boot 2.6」アノテーション@RestControllerでlistの戻り値を返す
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
1.アノテーション@RestController
RE ...
「Spring Boot 2.6」アノテーション@RestControllerでMapの戻り値を返す
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
アノテーション@RestController
REST ...
[Spring Boot]バリデーションチェックを実装するサンプル
1.pom.xmlに依頼関係を追加
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spr ...「Spring Boot」ポート番号を変更する方法
環境
Spring Boot 2.6.3
JDk 11
Spring Tool Suite 4
Spring Tool Suite 4
操作方法
1.propertiesファイルの場 ...
SpringBoot2.6 インターセプター(HandlerInterceptor)を使用する
環境
Windows10 64bit
Spring Boot 2.6.3
Spring Tool Suite 4
JavaSE 11
Thymeleaf 3
操作方法
1.イ ...
SpringBoot 2.6でフィールドインジェクションを行うサンプル
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
説明
@Component
インスタンスを S ...
SpringBoot 2.6で404エラー画面を表示するサンプル
環境
Windows10 64bit
Spring Boot 2.6.2
Spring Tool Suite 4
JDK 11
使用例
1.コントローラのクラス(TestContro ...
「Spring Boot」ポート番号を変更して画面を表示する
1.コントローラ側
package com.example.demo;import org.springframework.web.bind.annotation.GetMapping;import org.springfram ...