我正在使用Spring 3.2,并且拥有像这样的简单控制器
@Controller
public class MainController {
@Autowired
private SomeService service;
@RequestMapping(value = "/", method = RequestMethod.GET)
public ModelAndView index (ModelAndView modelAndView) {
// some code here
}
和..
@Controller
public class AnotherController {
@RequestMapping(value = "/another/test", method = RequestMethod.GET)
public ModelAndView anotherPageView (ModelAndView modelAndView) {
// some code here
}
如果我尝试打开页面/another/error
我收到404错误 - 这没关系,但当我打开包含/blabla
等网址的页面时,我有302状态并重定向到主页面(“/”)
为什么呢?如何在我的应用程序中没有映射到任何控制器的任何页面上获得404错误?