Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @GetMapping("/editarpessoa/{idpessoa}")
- public ModelAndView editar(@PathVariable("idpessoa") Long idpessoa) {
- Optional<Pessoa> pessoa = pessoaRepository.findById(idpessoa);
- return new ModelAndView("cadastro/cadastropessoa")
- .addObject("pessoaobj", pessoa.isPresent() ? pessoa.get() : new Pessoa())
- .addObject("profissoes", profissaoRepository.findAll())
- .addObject("pessoas", pessoaRepository.findAll(PageRequest.of(0, 5, Sort.by("nome"))));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement