다음은 권한 태그 <sec:authorize>를 사용한 예입니다.
웹 요청 URL이 http://.../exam02, http://.../manager/tag일 때 Example02Controller 컨트롤러의 요청 처리 메서드 requestMethod(), requestMethod2()로 출력되는 뷰 페이지 코드입니다.
Example02Controller.java
package com.springmvc.chap08;
...
@Controller
public class Example02Controller {
@GetMapping("/exam02")
public String requestMethod(Model model) {
return "webpage08_02";
}
@GetMapping("/admin/tag")
public String requestMethod2(Model model) {
return "webpage08_02";
}
}