Skip to content

Instantly share code, notes, and snippets.

@igm
Created July 7, 2011 11:46
Show Gist options
  • Save igm/1069343 to your computer and use it in GitHub Desktop.
Save igm/1069343 to your computer and use it in GitHub Desktop.
Secured methods
@Controller
public class MyController {
@Secured(admin = true)
@RequestMapping(value="/show_users.html", method = RequestMethod.GET)
public String showAllUsers(Model model) {
...
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment