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.

【Java(Spring Boot)】@〇〇Mappingを理解する

Posted at

#プログラミング勉強日記
2021年1月28日
昨日の記事@RequestBodyについて扱った。Spring Bootの@〇〇Mappingについてちゃんと理解していなかったので、それぞれ理解する。

#〇〇Mappingとは
 簡単に言うと、コントローラクラスの@〇〇Mappingはどんな場所なのか知らせてくれるものである。〇〇Mappingのあとの""部分はそのURLにリクエストあったときにそれぞれの処理が行われる

@RequestMappingの役割

 全体処理の入り口のようなもの。ここを通ることでいろいろな処理にいくことができる。

##@GetMappingの役割
 文字通りGET(取得)の役割を果たす部分。登録されているデータを取ってくる。

##@PostMappingの役割
 文字通りPOST(投稿)の役割を果たす部分。新しいデータ登録などをする。

##@DeleteMappingの役割
 文字通りDELETE(削除)の役割を果たす部分。既存データを削除する。

##@PutMappingの役割
 更新の役割を果たす部分。既存データや情報を上書きする。

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?