Quantcast
Channel: GUJ - Tópicos com a tag hibernate
Viewing all articles
Browse latest Browse all 759

Atualizar objeto com hibernate

$
0
0

@Ramires_Nascimento escreveu:

Estou com dificuldades em atualizar um objeto com hibernate. O seguinte JSON representa um Agendamento meu objeto que ainda não existe no banco. Porém paciente e dentista já existem no banco, por isso eles têm id.

{
	"paciente":{
		"id":1,
		"nome": "Ramires Moreia",
		"idade": 22
	},
	"dentista":{
		"id": 2,
		"crm" : "123-34",
		"nome": "Edilaine Santiago"
	},
	"horario":{
		"hora":7,
		"minuto":30,
		"diaDaSemana": "Segunda-Feira"
	},
	"observacao":"dor no dente"
}

Estou fazendo assim: Leia os comentário são auto explicativos

public class AgendamentoController {

	public static String agendar(Request req, Response resp) {
		//tranformo o JSON no objeto agendamento
		Agendamento agendamento = new Gson().fromJson(req.body(), Agendamento.class);
		
		EntityManager manager = new JPAUtil().getEntityManager();
		manager.getTransaction().begin();
		//busco o Dentista pelo ID
		Dentista dentista = manager.find(Dentista.class, agendamento.getDentista().getId());
		
		//tento adcionar o agendamento na agenda do dentista 
		//é aqui que a exceção é lançada 
		dentista.getAgenda().addAgendamento(agendamento);
		
		manager.getTransaction().commit();

		return "impllementando";
	}

}
}

O Erro que eu recebo é:

javax.persistence.EntityExistsException: A different object with the same identifier value was already associated with the session : [br.edu.ifce.odonto.model.Dentista#2]

Mensagens: 2

Participantes: 1

Ler tópico completo


Viewing all articles
Browse latest Browse all 759

Trending Articles


Girasoles para colorear


mayabang Quotes, Torpe Quotes, tanga Quotes


Tagalog Quotes About Crush – Tagalog Love Quotes


OFW quotes : Pinoy Tagalog Quotes


Long Distance Relationship Tagalog Love Quotes


Tagalog Quotes To Move on and More Love Love Love Quotes


5 Tagalog Relationship Rules


Best Crush Tagalog Quotes And Sayings 2017


Re:Mutton Pies (lleechef)


FORECLOSURE OF REAL ESTATE MORTGAGE


Sapos para colorear


tagalog love Quotes – Tiwala Quotes


Break up Quotes Tagalog Love Quote – Broken Hearted Quotes Tagalog


Patama Quotes : Tagalog Inspirational Quotes


Pamatay na Banat and Mga Patama Love Quotes


Tagalog Long Distance Relationship Love Quotes


BARKADA TAGALOG QUOTES


“BAHAY KUBO HUGOT”


Vimeo 10.7.0 by Vimeo.com, Inc.


Vimeo 10.7.1 by Vimeo.com, Inc.



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>