1
Restletを使用して、URLで渡された属性を取得するにはどうすればよいですか?階層URIで属性を取得する方法は?
例:http://localhost:8888/contacts/123
はここで、私は123の値を取得します。
私はラインコードの次のセットを使用しています:私は最後のRestletを使用しますが、私が正しくリコール場合、これは動作するはずですので、
router.attach("contacts/{contact_id}", ContactResource.class);
public class ContactResource extends ServerResource
{
@Get
public ContactDetail retrieve()
{
//how to retrieve the contact_id value?
return null;
}
}
ありがとうございます! :) – Valdemar