首页 > 编程语言 > 详细

springboot实现转发和重定向

时间:2019-03-06 11:39:08      阅读:3015      评论:0      收藏:0      [点我收藏+]

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实现转发和重定向

原文:https://www.cnblogs.com/lu51211314/p/10482099.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!