donaricano-btn

클래스 레벨의 @RequestMapping 


- 클래스 레벨에서도 @RequestMapping 설정이 가능하다

- 클래스 설정시 메소드에 설정한 URL은 모두 클래스의 서브 URL이 된다

1
2
3
4
5
6
7
8
9
10
@Controller
@RequestMapping("/user")
public class UserListController{
 
  @RequestMapping
  public String getAllUser(Model model){
    ...
 
  @RequestMapping("/userId:[0-9]{3}")
  public String getUserById(@PathVariable("userId") int id,...

블로그 이미지

리딩리드

,