RESTful APIを設計し、次のURIを使用したいと思います
http://[HOST]/[PLANET]/[LAT];[LONG]
例えば
http://myserver/earth/50.2;29.1
Spring MVCでのそのようなメソッドの適切なアノテーションは何ですか?これは次の1つで大丈夫ですか?
@RequestMapping(value = "/{planet}/{lat};{long}", method = RequestMethod.GET)
public String showInfoAboutCoords(
@PathVariable final String planet,
@PathVariable final String lat,
@PathVariable final String long,
final HttpServletResponse response) {
// Implementation
}
これが大丈夫なら-何のために@MaskFormat("###-##-####")
良いですか?