开心一笑: 会买水果的狗狗

    关注微信公众号

    QQ群:831045818

    app下载

    当前位置:首页> java > 技术文档 > 正文
    springboot跳转
    发布时间:2023-10-09 10:46:27.0 浏览次数:
    一 springboot跳转到指定页面
    1.controller的写法:   必须是templates下面的页面,不经过配置,无法直接跳转到public,static,等目录下的页面
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @Controller
    public class UserController {
        @RequestMapping("/api/show")
        public String showName(String userName,Model model){
            System.out.println("进入controller层了!!!"+userName);
            model.addAttribute("name",userName);
            return "index";//跳转到指定页面
        }
    }
    
    二、springboot重定向
    方式一:使用 "redirect" 关键字(不是指java关键字),
    注意:类的注解不能使用@RestController,要用@Controller;
    因为@RestController内含@ResponseBody,解析返回的是json串。不是跳转页面
    
    @RequestMapping(value="/test/test01/{name}" , method = RequestMethod.GET)
    public String test(@PathVariable String name) {
    return "redirect:/ceng/hello.html";
    }
    
    @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="/" , method = RequestMethod.GET)
    public void test(@PathVariable String name, HttpServletResponse response) throws IOException {
        response.sendRedirect("/xx/xx/xx");
    }
    
    
    @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);
    }


    关注"都市百货" 了解南陵

    微信咨询wanglf2r(不拉群 发广告者勿加)

    0
    0
    上一篇: PSEXEC 在远程计算机上运行命令 上一篇:jpa in or使用

    评论已有0

    提交评论

    热门评论

    南陵新闻
    公示公告
    常用查询
    风光南陵
    走出南陵
    友情链接