springmvc页面跳转总结

1.强制使用试图渲染器:

a.返回值为model等时.

b.返回字符串时.

2.不使用渲染器

a.request分发,可访问web-inf下资源.

b.resp重定向不可访问web-inf下资源.

c.返回字符串:"forward:url"时可访问web-inf下资源;

"redirect:url"时不可访问web-inf下资源;

d.controller中跳转到新窗口:resp.getWriter().write("").

你可能感兴趣的:(springmvc页面跳转总结)