1. 程式人生 > >springboot實現轉發和重定向

springboot實現轉發和重定向

val tps Language pat row style forward 不能 exc

1、轉發

方式一:使用 "forword" 關鍵字(不是指java關鍵字),註意:類的註解不能使用@RestController 要用@Controller

@RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)
public String test(@PathVariable String name) {
    logger.info("controller類中方法的參數:" + name);
    HelloService helloService = new HelloService();
    helloService.helloService();
    return "forword:/ceng/hello.html";
}

方式二:使用servlet 提供的API,註意:類的註解可以使用@RestController,也可以使用@Controller

@RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)
public void test(@PathVariable String name, HttpServletRequest request, HttpServletResponse response) throws Exception {
    logger.info("controller類中方法的參數:" + name);
    HelloService helloService = new HelloService();
    helloService.helloService();
    request.getRequestDispatcher("/ceng/hello.html").forward(request,response);
}

2、重定向

方式一:使用 "redirect" 關鍵字(不是指java關鍵字),註意:類的註解不能使用@RestController,要用@Controller

@RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)
public String test(@PathVariable String name) {
    logger.info("controller類中方法的參數:" + name);
    HelloService helloService = new HelloService();
    helloService.helloService();
    return "redirect:/ceng/hello.html";
}

方式二:使用servlet 提供的API,註意:類的註解可以使用@RestController,也可以使用@Controller

@RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)
public void test(@PathVariable String name, HttpServletResponse response) throws IOException {
    logger.info("controller類中方法的參數:" + name);
    HelloService helloService = new HelloService();
    helloService.helloService();
    response.sendRedirect("/ceng/hello.html");
}

使用API進行轉發時,一般會在url之前加上:request.getContextPath()

springboot實現轉發和重定向