私のリクエストをモデル化するクラスがあります。
class Venue {
private String city;
private String place;
// Respective getters and setters.
}
また、会場に関する情報を取得するための RESTful URL をサポートしたいと考えています。だから私はこのようなコントローラーメソッドを持っています。
@RequestMapping(value = "/venue/{city}/{place}", method = "GET")
public String getVenueDetails(@PathVariable("city") String city, @PathVariable("place") String place, Model model) {
// code
}
すべての個々のパラメーターを取得する代わりに、春にパス変数をモデル オブジェクト (この場合は Venue) にバインドする方法はありますか?