我正在尝试编写一个可以处理动态 URL 的控制器
这是控制器:
@RequestMapping( value = "/*/module/{file_id}" )
public String getModule( @PathVariable( "file_id" )
int fileId, Model model )
{
return "redirect:../*/module/" + fileId;
}
链接:
<a href="../module/${ file_id }" >Spring Tutorial</a>
它会产生404: The requested resource is not available.
错误。我究竟做错了什么?