0

私はウェブサイトを持っています。今、そのようなパーマリンク機能を実装したいと思っています。そのために私はSpring MVCを使用して安らかなサービスを作成し、目的のページを返しました。@RequestMapping(value="/{username}",method = RequestMethod.GET) のように記述

今問題は、このWebサービスが呼び出される他のサービスを呼び出したいときです。これを止める方法はありますか。

4

1 に答える 1

0

Design your RESTful URLs properly. The url http://mywebsite.com/{anything-here} definitely matches your controller method. And the url http://mywebsite.com/{anything-here}/{something-here} will not match the same controller method.

I would prefer you to have below url mapping for your permalinks http://mywebsite.com/perm/{anything-here}

于 2012-07-30T09:47:29.590 に答える