Controller
텔레비전의 리모컨과 비슷하다
( 중간 통로 역할 )
![](https://blog.kakaocdn.net/dn/KvXhG/btswcLrePCm/JzgYsBSUJ4nQAZxXPR5br0/img.png)
< 1 >
Hello World Controller
url 에 해당하는 jsp 파일로 연결하기
정의
@Controller
@Controller
public class 클래스명 {}
매핑하기
@GetMapping()
@GetMapping("") // 예제 /exam00/hello
public String Hello(Model model) {
return ""; // 예제 /exam00/hello.jsp
}
'SpringBoot > code' 카테고리의 다른 글
SpringBoot - @PathVariable (0) | 2023.10.05 |
---|---|
SpringBoot - @ModelAttribute (0) | 2023.10.05 |
SpringBoot - @RequestParam (0) | 2023.10.05 |
Springboot - Model (인터페이스) (0) | 2023.10.04 |
SpringBoot - 어노테이션 (0) | 2023.10.04 |