Hibernate version: 3.2.6.ga
Name and version of the database: hsqldb 1.8.0.7
I have two entities related one-to-one
Code:
@Entity
public class Person {
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
private Integer id;
@JoinColumn(name = "address_id")
@OneToOne(cascade = CascadeType.ALL)
private Address address;
public void setAddress(Address address) {
this.address = address;
}
}
@Entity
public class Address {
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
private Integer id;
@OneToOne(mappedBy = "address", cascade = CascadeType.ALL)
private Person person;
}
This simple test:
Code:
@Test
public void testOneToOnePerson() throws Exception {
Person person = new Person();
Address address = new Address();
person.setAddress(address);
hibernateTemplate.save(person);
hibernateTemplate.flush();
hibernateTemplate.clear();
hibernateTemplate.get(Person.class, 1);
}
Shows following queries in the log:
select person0_.id as id93_1_, person0_.address_id as address2_93_1_, address1_.id as id92_0_ from Person person0_ left outer join Addr address1_ on person0_.address_id=address1_.id where person0_.id=?
select person0_.id as id93_1_, person0_.address_id as address2_93_1_, address1_.id as id92_0_ from Person person0_ left outer join Addr address1_ on person0_.address_id=address1_.id where person0_.address_id=?
First request contains all the info needed to initialize both objects. What's the purpose of the second query and how to get rid of it?