-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: Bidirectional OneToOne
PostPosted: Mon Mar 16, 2009 8:22 am 
Newbie

Joined: Mon Mar 16, 2009 8:07 am
Posts: 5
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?


Top
 Profile  
 
 Post subject: HELP ME!!!
PostPosted: Wed Mar 18, 2009 10:41 am 
Newbie

Joined: Mon Mar 16, 2009 8:07 am
Posts: 5
I try to use hibernate in the highload system, but this feature disturbs to me


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 18, 2009 3:14 pm 
Expert
Expert

Joined: Wed Mar 03, 2004 6:35 am
Posts: 1240
Location: Lund, Sweden
Have you tried setting the fetch mode on the association? See http://www.hibernate.org/hib_docs/annot ... c-fetching

The default fetch mode is SELECT and it usually does require one select statement for each referenced object. The reason that the two SQL statements are similar may be that you have no other properties than the id in each class.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 19, 2009 6:06 am 
Newbie

Joined: Mon Mar 16, 2009 8:07 am
Posts: 5
I have already tried all combinations of annotations Fetch and LazyToOne. Always it turns out two queries.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 19, 2009 1:29 pm 
Newbie

Joined: Thu Mar 19, 2009 11:07 am
Posts: 6
Hi,

I did not use annotations for my mapping but this xml mapping works for me:

<hibernate-mapping package="org.hibernate.tutorial.domain">

<class name="Address" table="ADDRESS">
<id name="id" column="ADDRESS_ID">
<generator class="native"/>
</id>
<property name="town"/>
<property name="street" />
<property name="zipCode" />
<one-to-one name="phone" class="Phone" fetch="join" lazy="false"/>
</class>

<class name="Phone" table="PHONE">
<id name="id" column="PHONE_ID">
<generator class="native"/>
</id>
<property name="number"/>
</class>
</hibernate-mapping>

The xml that is generated if I execute session.get(Address.class, 1L) is the following:

select
address0_.ADDRESS_ID as ADDRESS1_0_1_,
address0_.town as town0_1_,
address0_.street as street0_1_,
address0_.zipCode as zipCode0_1_,
phone1_.PHONE_ID as PHONE1_1_0_,
phone1_.number as number1_0_
from
ADDRESS address0_
left outer join
PHONE phone1_
on address0_.ADDRESS_ID=phone1_.PHONE_ID
where
address0_.ADDRESS_ID=?

So, everything you need and only one query.

Greets,
Patrick


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 19, 2009 3:48 pm 
Newbie

Joined: Mon Mar 16, 2009 8:07 am
Posts: 5
You use unidirectional relation, but a problem from the bidirectional


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 19, 2009 3:52 pm 
Beginner
Beginner

Joined: Wed Oct 03, 2007 4:10 am
Posts: 46
put this in log4j

<category name="org.hibernate.type">
<priority value="trace"/>
</category>

<!--category name="org.hibernate.SQL">
<priority value="debug"/>
</category>


in order to the parameters for the sql. Maybe it will enlight us.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 19, 2009 4:04 pm 
Newbie

Joined: Mon Mar 16, 2009 8:07 am
Posts: 5
Hibernate: 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=?
23:02:27,515 TRACE IntegerType:133 - binding '1' to parameter: 1
23:02:27,515 TRACE IntegerType:172 - returning '1' as column: id92_0_
23:02:27,517 TRACE IntegerType:172 - returning '1' as column: address2_93_1_

Hibernate: 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=?
23:02:27,520 TRACE IntegerType:133 - binding '1' to parameter: 1
23:02:27,520 TRACE IntegerType:172 - returning '1' as column: id92_0_
23:02:27,520 TRACE IntegerType:172 - returning '1' as column: id93_1


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.