我想配置 Spring MVC 为我执行以下操作:
If (a controller is not found
&& controller exist for requestURI with or without trailing slash) {
redirect 301 to other URI with or without trailing slash
} else {
return 404 error
}
以上应该由spring完成,而不是通过一些web.xml过滤器,因为只有spring可以测试重定向是否有意义,即是否有控制器来处理重定向请求。