
์ด๋ฒ๊ธ์ Controller ์ ๋ํด ์ข๋ ์์ธํ ์์๋ณด๊ณ Index ํ์ด์ง๋ฅผ ๋ง๋ค์ด ๋ณด๊ฒ ๋ค.
Controller๋ MVC์์ C์ ํด๋นํ๋ฉฐ ์ฌ์ฉ์์ ์์ฒญ์ ์ฒ๋ฆฌํ ํ V์ ํด๋น๋๋ ๋ทฐ์ M์ ํด๋น๋๋ ๋ชจ๋ธ ๊ฐ์ฒด๋ฅผ ๋๊ฒจ์ฃผ๋ ์ญํ ์ ๋ด๋นํ๋ค. Controller ์ ๋ํ์ ์ธ ์ด๋ ธํ ์ด์ ์ ์ด๋ค๊ฒ ์๋์ง ์์๋ณด๊ฒ ๋ค.
@Controller
Controller ์ ์ญํ ์ ์ํํ๋ค๊ณ ๋ช ์ํ๋ค.
๋ช ์๋ ํด๋์ค๋ฅผ Spring MVC ์ปจํธ๋กค๋ฌ๋ก ํ์ํ๋๋ฐ ์ฌ์ฉ๋๋ค.์ฃผ๋ก View์ ๋ฐํํ๊ธฐ ์ํด ์ฌ์ฉํ๋ฉฐ ๋ฐ์ดํฐ๋ฅผ ๋ฐํํ๊ธฐ ์ํด์๋
@ResponseBody ์ด๋ ธํ ์ด์ ์ ์ฌ์ฉํ์ฌ ํด๋ผ์ด์ธํธ๊ฐ ์์ฒญํ ๋ฐ์ดํฐ๋ฅผ JSON ํํ๋ก ๋ฐ์ดํฐ๋ฅผ ๋ฐํํ ์ ์๋ค.์ฌ์ฉ ๋ฐฉ๋ฒ์ ํด๋์ค ์ ์ธ๋ถ์ ์ ๋ ฅํ๋ค.
@Controller public class TestRestController { }
โ
@RequestMapping
ํน์ URI ๋ก ์์ฒญ์ ๋ณด๋ด๋ฉด Controller ์์ ์ด๋ค ๋ฉ์๋๊ฐ ์ฒ๋ฆฌํ ์ง ๋งตํํ๊ธฐ ์ํ ์ด๋ ธํ ์ด์ ์ด๋ค.
์ฌ์ฉ ๋ฐฉ๋ฒ์ ํด๋์ค๋ ๋ฉ์๋ ์ ์ธ๋ถ์ ์ด๋ ธํ ์ด์ ์ ๊ธฐ์ ํ๋ค.
RequestMapping(value="/users", method=@RequestMethod.GET) -> @GetMapping("/users") // ๋์ผ
@RequestMapping(value="/users", method=@RequestMethod.POST) -> @PostMapping("/users") // ๋์ผ
@RequestMapping(value="/users", method=@RequestMethod.PUT) -> @PutMapping("/users") // ๋์ผ
@RequestMapping(value="/users", method=@RequestMethod.DELETE) -> @DeleteMapping("/users") // ๋์ผ
@RequestBody
HTTP ์์ฒญ์ Body ๋ด์ฉ์ ํต์งธ๋ก ์๋ฐ ๊ฐ์ฒด๋ก ๋ณํํด์ ๋งคํ๋ ๋ฉ์๋ ํ๋ผ๋ฏธํฐ๋ก ์ ๋ฌํด์ค๋ค.
@Controller @RequestBody public class TestRestController { }
@ResponseBody
์๋ฐ ๊ฐ์ฒด๋ฅผ HTTP์์ฒญ์ Body ๋ด์ฉ์ผ๋ก ๋งคํํ์ฌ ํด๋ผ์ด์ธํธ๋ก ์ ์กํ๋ค.
@Controller
public class TestRestController {
@ResponseBody
@RequestMapping("/hello")
public String hello(){
return "Hello";
} }
@RestController
RESTful API ์๋น์ค์ ์ฌ์ฉ๋๋ ํน์ ์ปจํธ๋กค๋ฌ์ด๋ฉฐ @Controller + @Response ํฉ์ณ ๋์๊ฑฐ๋ ๋์ผํ ์ญํ ์ ํ๋ค.
Spring MVC Controller์ @ResponseBody๊ฐ ์ถ๊ฐ๋์์ผ๋ฉฐ JSON ํํ๋ก ํด๋ผ์ด์ธํธ๊ฐ ์์ฒญํ ๊ฐ์ฒด๋ฅผ ๋ฐํํ๋ค.
@RestController public class TestRestController { }
์ฌ๊ธฐ๊น์ง Controller ์ด๋ ธํ ์ด์ ์ ๋ํด ์์๋ณด์๋ค. ์ด์ Index ํ์ด์ง๋ฅผ ๊ฐ๋จํ๊ฒ ๋ง๋ค์ด ๋ณผ ์์ ์ด๋ค.
โ
1. Index view ์์ฑํ๊ธฐ
์์ค ๊ฒฝ๋ก src/main/resoreces/static ์ index.html ํ์ผ์ ์ถ๊ฐํ๋ค. static ํด๋๋ html ๋ฌธ์, ์ด๋ฏธ์ง, ์์ ๋ฑ ์ ์ ํ์ผ์ ๊ด๋ฆฌํ๋ ํด๋์ด๋ค.


์์ฑํ index.html ๋ฌธ์๋ฅผ ์ด์ด ์๋์ ๊ฐ์ด ๊ฐ๋จํ๊ฒ ์์ฑํด ๋ณด์.
Controller ์ ์์ฑํ๋ค.
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class TestController {
@RequestMapping(value = "/index")
public String index(){
return "index.html";
} }
index.html ์ TestController ํด๋์ค ์์ฑ ํ ์คํํด์ url๋ก ์ ์ํด ๋ณด๋ฉด Hellow World! ์ ํ์ธํ ์ ์๋ค.

Ajax ํต์ ์ ์ด์ฉํ์ฌ Html ๋ฌธ์์์ Object ๊ฐ์ฒด๋ฅผ ์ ๋ฌ ๋ฐ์ ์ ์๋ค.
index.html์ ๋ค์๊ณผ ๊ฐ์ด ์์ ํ๋ค.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Index</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$.ajax({
type: "GET",
url: "/getValue",
success: (data) => { console.log(data); $('#contents').html(data);
} });
</script>
</head>
<body>
<h1>Hello World!</h1>
<div id="contents"> </div>
</body>
</html>
getValue ๊ฐ์ ๊ฐ์ ธ์ฌ ์ ์๊ฒ TestController ํด๋์ค๋ ๋ค์๊ณผ ๊ฐ์ด ์ถ๊ฐํ๋ค.
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class TestController {
@RequestMapping(value = "/index")
public String index(){
return "index.html";
}
@ResponseBody
@RequestMapping("/getValue")
public String getValue() {
return "Hello java spring boot!";
} }
๊ทธ๋ฆฌ๊ณ ๋์ ์คํํด์ ๋ค์ ํ์ธํด ๋ณด๋ฉด "Hello java spring boot! ๋ผ๋ ๊ฐ์ฒด๋ฅผ ๊ฐ์ ธ์จ๊ฑธ ํ์ธํ ์ ์๋ค.

โ
View ํ์ ๋ง๊ณ ๋ @RestController ์ ์ด์ฉํ์ฌ JSON ํํ๋ก ํด๋ผ์ด์ธํธ ์์ฒญ ๋ฐ์ดํฐ๋ฅผ ๋ฐํํ ์ ์๋ค.
'๐ป > SpringBoot' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Spring Boot] Controller, Service, DAO, Mapper, DTO ์ ๋ฆฌ (6) | 2024.12.25 |
---|---|
[Thymeleaf] Thymeleaf ์ด๊ธฐ ์ค์ , ๋ทฐ ํ ํ๋ฆฟ ์ฌ์ฉ (4) | 2024.12.14 |
[Spring Boot] ์คํ๋ง ์์กด์ฑ ์ฃผ์ @Autowired, @Resource, @Inject (2) | 2024.12.14 |
[STS/Spring Boot] STS์์ maven์ผ๋ก build ํ๋ ๋ฐฉ๋ฒ (0) | 2024.12.12 |