zoukankan      html  css  js  c++  java
  • springboot实现转发和重定向

    1、转发

        方式一:使用 "forword" 关键字(不是指java关键字),注意:类的注解不能使用@RestController 要用@Controller

    @RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)
    public String test(@PathVariable String name) {
        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 {
        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) {
        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 {
        response.sendRedirect("/ceng/hello.html");
    }
    

     使用API进行重定向时,一般会在url之前加上:request.getContextPath()

  • 相关阅读:
    Swift:属性观察器
    swift:谈谈swift几种常见属性的区别
    iOS:崩溃统计工具Crashlytics的使用
    【互动出版网】2013双11全场科技图书六折包邮
    【互动出版网】11.11购物狂欢节重磅大促,免费领万千优惠券
    C#编程兵书
    C++编程兵书
    HTML+CSS网站开发兵书
    Java编程兵书
    网络运维与管理2013超值精华本
  • 原文地址:https://www.cnblogs.com/lu51211314/p/10482099.html
Copyright © 2011-2022 走看看