@Controller
@Component 어노테이션의 특수한 종류
Spring MVC에서 Controller클래스
HTTP 요청을 처리하고, 적절한 비즈니스 로직을 호출
@Controller
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/{id}")
public String getUser(@PathVariable Long id, Model model) {
User user = userService.getUserById(id);
model.addAttribute("user", user);
return "userView";
}
@PostMapping("/")
public String createUser(User user) {
userService.createUser(user);
return "redirect:/user/" + user.getId();
}
}
https://standout.tistory.com/479
https://standout.tistory.com/477
https://standout.tistory.com/480
https://standout.tistory.com/481
'JAVA > Spring' 카테고리의 다른 글
Annotation - @GetMapping (0) | 2023.04.19 |
---|---|
Annotation - @RequestMapping (0) | 2023.04.19 |
Annotation - @Autowired @Qualifier (0) | 2023.04.19 |
Annotation - @Component (0) | 2023.04.19 |
@Component와 @Bean의 차이 (0) | 2023.04.19 |