Bibi's DevLog ๐ค๐
@RequestMapping ์ผ๋ก ์ค๋ณตURL ์ ๊ฑฐํ๊ธฐ ๋ณธ๋ฌธ
๐ฅ BE ๋ฐฑ์๋/Spring ์คํ๋ง
@RequestMapping ์ผ๋ก ์ค๋ณตURL ์ ๊ฑฐํ๊ธฐ
๋น๋น bibi 2021. 3. 17. 00:29@RequestMapping
์ฌ์ฉ๋ฒ ๊ณต๋ถํด์ ์ค๋ณตURL ์ ๊ฑฐํ์.
์ฐธ๊ณ : ๋ธ๋ก๊ทธ. ๊ฐ์ฌํฉ๋๋ค!
@RequestMapping
์ด๋
ธํ
์ด์
์
HTTP request๋ก ๋ค์ด์ค๋ URL์ ํน์ ์ปจํธ๋กค๋ฌ์ ํด๋์ค ๋๋ ๋ฉ์๋๋ก ์ฐ๊ฒฐ์ํค๋ ์ญํ ์ ํ๋ค. (์ปจํธ๋กค๋ฌ์ ํด๋์ค ๋ฐ ํน์ ๋ฉ์๋ ๋ชจ๋ ์ ์ฉ ๊ฐ๋ฅํ๋ค)
์ฌ์ค์ URL ๋ฟ ์๋๋ผ ํ๋ผ๋ฏธํฐ, ํค๋ ๋ฑ ์ฌ๋ฌ ๋ฒ์์ ์ ์ฉํ ์ ์๋ค๊ณ ํ๋ค. ์ฌ๊ธฐ๋ฅผ ์ฐธ๊ณ ํด ๋์ค์ ๊ณต๋ถํด์ผ๊ฒ ๋ค.
@RequestMapping
๋ฅผ ํด๋์ค์ ์ ์ธํ๋ฉด ์ค๋ณตURL์ ์ ๊ฑฐํ ๋ ์ข๋ค.
์๋๋ ์์ .
@Controller
@RequestMapping("/home")
public class TestController {
@RequestMapping("/")
String getName(){
return "Hello from getName() method";
}
// http://localhost:8080/home/์ getName()์ ํธ์ถํ๊ฒ ๋๋ค.
@RequestMapping("/info")
String showInfo(){
return "Hello from showInfo() method";
}
// http://localhost:8080/home/info์ showInfo()์ ํธ์ถํ๊ฒ ๋๋ค.
}
'๐ฅ BE ๋ฐฑ์๋ > Spring ์คํ๋ง' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Spring] HTTP method - PUT (0) | 2021.04.06 |
---|---|
[JPA] CrudRepository์ ๋ฉ์๋ & JpaRepository์ CrudRepository์ ์ฐจ์ด (0) | 2021.03.20 |
[Spring, H2 database] ์คํ๋ง ์ฑ๊ณผ H2 ๋ฐ์ดํฐ๋ฒ ์ด์ค ์ฐ๊ฒฐํ๊ธฐ (0) | 2021.03.15 |
Heroku๋ก ์คํ๋ง ์ฑ ๋ฐฐํฌํ๊ธฐ (0) | 2021.03.15 |
[Spring] @RequestParam, @PathVariable ์ฐจ์ด (0) | 2021.03.11 |