Hi all
I have been looking for a way to secure URLs like
@RequestMapping("/owners/{ownerId}/pets/new")
on user (not role) level, i.e. only owner with ID {ownerId} has access. Moreover, I want to secure RESTful design incl. async access to JSON services on owner level dynamically.
My questions:
- How is this best done with Spring Security?
- How is this done when /owners/{ownerId}/pets/new is accessed via async request?
- How would I access above-mentioned URI from a 3rd party app, e.g. iPhone app?
- Any sample/reference applications/articles?
Thanks Er