- 前不久遇到同学的一个问题,如何实现前缀为 admin/的404请求直接跳a 页面?如:admin/index.htm (controller中有的地址)则直接跳转到index.htm 中, 而admin/ abcd.htm (controller中没有的地址)则直接跳到a页面。同时前缀为 user/ 的404跳B页面
其实答案就在Spring的RequestMapping注解之中:
@Controller
@RequestMapping("/test")
public class TestController{
// 404 请求跳转
@GetMapping(value = {"/**/*",""})
public String filter(){
return "404";
}
}