Skip to content

Instantly share code, notes, and snippets.

@gregori
Created October 25, 2015 23:16
Show Gist options
  • Save gregori/64689ce3fa7fec4a766a to your computer and use it in GitHub Desktop.
Save gregori/64689ce3fa7fec4a766a to your computer and use it in GitHub Desktop.
Passo 3b
@Component
@RepositoryEventHandler(Pessoa.class)
public class PessoaEventHandler {
@PreAuthorize("hasRole('ROLE_ADMIN')")
@HandleBeforeSave
public void checkPUTAuthority(Pessoa pessoa) {
// somente para verificação de segurança
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment