Sorry for the english, i hope you understand.
I have a problem deleting with hibernate. I have tryed a lot of "solutions" but they haven't worked. I want to delete a team (equipo) without deleting the tournament (campeonato)
So, I have this ER
Equipo --> Equipo_Campeonato <-- Campeonato
id Equipo id
nombre Campeonato nombre
My entities are:
Table Equipo:
@Entity
@Table(name="equipo"
,catalog="sistemafutbol"
)
public class Equipo implements java.io.Serializable {
private Integer id;
private String nombre;
private Set<Campeonato> campeonatos = new HashSet<Campeonato>(0);
@ManyToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY)
@JoinTable(name="equipoxcampeonaato", catalog="sistemafutbol", joinColumns = {
@JoinColumn(name="Equipo", nullable=false, updatable=false) }, inverseJoinColumns = {
@JoinColumn(name="Campeonato", nullable=false, updatable=false) })
public Set<Campeonato> getCampeonatos() {...
Tabla Campeonato
Entity
@Table(name="campeonato"
,catalog="sistemafutbol"
)
public class Campeonato implements java.io.Serializable {
private Integer id;
private String nombre;
private Set<Equipo> equipos = new HashSet<Equipo>(0);
@ManyToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY)
@JoinTable(name="equipoxcampeonaato", catalog="sistemafutbol", joinColumns = {
@JoinColumn(name="Campeonato", nullable=false, updatable=false) }, inverseJoinColumns = {
@JoinColumn(name="Equipo", nullable=false, updatable=false) })
public Set<Equipo> getEquipos() {...
And the code with i've been trying to do it is:
Session session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
equipo.getCampeonatos().remove(campeonato);
campeonato.getEquipos().remove(equipo);
session.delete(equipo); // or session.merge(equipo); or session.saveOrUpdate(equipo);
session.getTransaction().commit();
so i hope you can help me. Thanks!
UPDATE
This is the code that danny.lesnik tell me integrated to my code.
Campeonato campeonato = ControladorCampeonato.obtenCampeonato(idCampeonato);
//this is where I get the tournament
if(listaEquiposSeleccionados.length>0){
for(int i=0;i<listaEquiposSeleccionados.length;i++){
int idEquipo = listaEquiposSeleccionados[i].getId().intValue();
Equipo equipo= ControladorEquipo.obtenEquipo(idEquipo);
this is where I get the team.
try{
Session session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
campeonato.getEquipos().remove(equipo);
session.update(campeonato);
session.getTransaction().commit();
listaEquiposAgregados.add(equipo);
}
I'm doing a web page where I select a tournament and I can select multiple teams. I was debuging and the exception is right in the line session.update(campeonato); the exception was "Illegal attempt to associate a collection with two open sessions". :S SOLUTION by danny-lesnik
if(listaEquiposSeleccionados.length>0){
for(int i=0;i<listaEquiposSeleccionados.length;i++){
int idEquipo = listaEquiposSeleccionados[i].getId().intValue();
Session session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
Equipo equipo= (Equipo)session.load(Equipo.class, idEquipo);
Campeonato campeonato = (Campeonato)session.load(Campeonato.class, idCampeonato);
campeonato.getEquipos().remove(equipo);
session.update(campeonato);
session.getTransaction().commit();
session.close();
}
}
I think the problem was load the "Campeonato" and the "Equipo" in differents sessions. Hope this help another people with the same problem.