-->
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.  [ 1 post ] 
Author Message
 Post subject: Problem to access CompositeUserType class properties in hql
PostPosted: Mon Aug 19, 2013 5:41 am 
Newbie

Joined: Thu Sep 22, 2011 9:06 am
Posts: 16
Hi,
I have to apply query for CompositeUserType pojo using hibernate hql. The custom type nothing but xml data. I converted from xml to java bean object.
It is not working when i apply query opposite to CompositeUserType's pojo i am getting error.
Code,
-------
Pojo
====
public class UserEvent implements CompositeUserType {

}
hbm:
=====
<hibernate-mapping>
<class name="com.eventstream.hbm.ViewUserEvents" table="VIEW_USER_EVENTS" mutable="false">
<property name="eventDate" type="java.sql.Timestamp">
<column name="EVENT_DATE" length="0" />
</property>
<property name="userEventForm" type="com.eventstream.hbm.UserEvent">
<column name="EVENT_DATA" />
</property>
</class>
</hibernate-mapping>

DAO
=====
Note: I am accessing who from the CustomType pojo
Query eventQry = session
.createQuery("select event.userEventForm.who from ViewUserEvents as event where event.eventId=81");
logger.info("" + eventQry.list());
Exception:
=========
org.hibernate.QueryException: could not resolve property: userEventForm.who of: com.eventstream.hbm.ViewUserEvents


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

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.