使用@RequestMapping注解的请求映射方法,()表示重定向
时间: 2023-08-02 10:23:39 浏览: 169
Javaweb请求转发及重定向实现详解
使用 @RequestMapping 注解的请求映射方法,可以使用 `return "redirect:/url"` 表示重定向。
其中,`/url` 是需要重定向的 URL 地址。例如:
```
@Controller
@RequestMapping("/demo")
public class DemoController {
@RequestMapping("/redirect")
public String redirect() {
return "redirect:/demo/target";
}
@RequestMapping("/target")
@ResponseBody
public String target() {
return "This is the target page!";
}
}
```
在上面的示例中,当访问 `/demo/redirect` 时,会重定向到 `/demo/target` 页面。`/demo/target` 页面的内容为 "This is the target page!"。
阅读全文