0

我有一个网站,现在我想实现一个永久链接功能,比如http://mywebsite.com/sougata应该是 sougata 的网页。为此,我使用 Spring MVC 编写了一个宁静的服务,它返回了我想要的页面。将其描述为 @RequestMapping(value="/{username}",method = RequestMethod.GET)

现在的问题是当我想调用任何其他服务时,这个 web 服务会被调用。有没有办法阻止这种情况。

4

1 回答 1

0

正确设计您的 RESTful URL。url http://mywebsite.com/{anything-here}绝对匹配您的控制器方法。并且 url http://mywebsite.com/{anything-here}/{something-here}将不匹配相同的控制器方法。

我希望您为您的永久链接提供以下网址映射 http://mywebsite.com/perm/{anything-here}

于 2012-07-30T09:47:29.590 回答