setviewname 跳转html,Springmvc几种页面跳转的方式

满意答案

00e27ab806e4881f8254fe7ae8741834.png

kiss爱n

2018.07.04

00e27ab806e4881f8254fe7ae8741834.png

采纳率:50%    等级:10

已帮助:317人

1. 几种页面跳转方式

1.1 通过HttpServletResponse的API直接输出(不需要配置渲染器)

案例: @Controller

public class RequestController{

@RequestMapping("/resp")

public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

resp.getWriter().println("hello HttpServletResponse");

}

1.2 使用HttpServletResponse 重定向到另一个视图(其他不变 )

@RequestMapping("/resp")

public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

resp.sendRedirect("index.jsp");

}

}

1.3 使用HttpServletRequest 转发(默认访问/下的index.jsp页面 不受渲染器的影响)

@RequestMapping("/resp")

public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

req.setAttribute("message","it's forword ");

req.getRequestDispatcher("index.jsp").forward(req,resp);

}

1.4直接返回jsp页面的名称(无渲染器)

@RequestMapping("/nice")

public String hello1(){

//转发方式1

return "home.jsp";

//转发方式2

return "forward:index.jsp";

//重定向方式

return "redirect:index.jsp";

}

1.5 使用modelandview 需要视图解析器 能指定跳转页面

public class HelloController implements Controller {

@Override

public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest httpServletRequest,

javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {

ModelAndView mv = new ModelAndView();

//封装要显示到视图的数据

mv.addObject("msg","hello myfirst mvc");

//视图名

mv.setViewName("hello");

return mv;

}

}

class="org.springframework.web.servlet.view.UrlBasedViewResolver">

1.6

//通过modelmap方式

@RequestMapping("/modelmap")

public String modelHello(String name,ModelMap map){

map.addAttribute("name",name);

System.out.println(name);

return "index.jsp";

}

00分享举报

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值