作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
@RequestMapping(value = {"/abc", "/def"} method = RequestMethod.GET)
public final String switch(HttpServletRequest request, ModelMap model)
throws Exception {
// pseudeocode:
if mapping == "abc"
return "redirect:/def";
else
process the request;
}
如果调用 abc
处理程序,我想重定向到 def
。
是否可以在处理“def”的同一处理函数中执行此操作?
最佳答案
在我看来,如果您使用 @RequestMapping("abc") 创建另一个方法会更好,该方法会重定向到 def。如果您不想这样做,您可以从 HttpServletRequest 获取路径信息(查看 javadoc)并执行 if 语句来执行重定向。
关于java - 如何在同一个 Spring MVC 映射处理程序处理的两个请求映射之间进行切换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8621736/
我是一名优秀的程序员,十分优秀!