티스토리 뷰

 

ContextPath로 접근하였을 때 index 페이지에서 로그인 페이지로 연결하는 예시이다.

Controller 다양한 예제

@Controller
public class IndexController {
 
    @GetMapping("/")
    public String indexView() {
        return "/index";
    }
}
@Controller
public class IndexController {
 
    @GetMapping("/")
    public String indexView() {
        return "redirect:/index";
    }
}
@Controller
public class IndexController {
 
    @GetMapping("/")
    public RedirectView indexView() {
        return new RedirectView("/index");
    }
}

 

index.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
    response.sendRedirect(request.getContextPath() + "/login");
%>

 

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함