ERROR 952 --- [nio-8080-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.orm.jpa.JpaSystemException: HHH000142: Bytecode enhancement failed: br.com.alura.forum.model.Topico; nested exception is org.hibernate.HibernateException: HHH000142: Bytecode enhancement failed: br.com.alura.forum.model.Topico] with root cause
@GetMapping("/{id}")
public TopicoDto detalhar(@PathVariable("id") Long id){
Topico topico = topicoRepository.getOne(id);
return new TopicoDto(topico);
}