클래스 레벨의 @RequestMapping
- 클래스 레벨에서도 @RequestMapping 설정이 가능하다
- 클래스 설정시 메소드에 설정한 URL은 모두 클래스의 서브 URL이 된다
12345678910@Controller
@RequestMapping
(
"/user"
)
public
class
UserListController{
@RequestMapping
public
String getAllUser(Model model){
...
@RequestMapping
(
"/userId:[0-9]{3}"
)
public
String getUserById(
@PathVariable
(
"userId"
)
int
id,...
'Back-End > SpringFrame_1' 카테고리의 다른 글
[Spring] Model오브젝트와 Session스코프 (0) | 2016.09.18 |
---|---|
[Spring] 입력값다루기 @ModelAttribute (0) | 2016.09.18 |
[Spring] @RequestMapping 애노테이션과 URL 템플릿 (0) | 2016.08.23 |
[Spring] @RequestMapping 애노테이션 속성 (0) | 2016.08.22 |
[Spring] PresentationLayer_Function of Spring (0) | 2016.08.16 |