vote up 2 vote down star
1

I'm looking for a builder for HQL in Java. I want to get rid of things like:

StringBuilder builder = new StringBuilder()
    .append("select stock from ")
    .append( Stock.class.getName() )
    .append( " as stock where stock.id = ")
    .append( id );

I'd rather have something like:

HqlBuilder builder = new HqlBuilder()
    .select( "stock" )
    .from( Stock.class.getName() ).as( "stock" )
    .where( "stock.id" ).equals( id );

I googled a bit, and I couldn't find one.

I wrote a quick & dumb HqlBuilder that suits my needs for now, but I'd love to find one that has more users and tests than me alone.

Note: I'd like to be able to do things like this and more, which I failed to do with the Criteria API:

select stock
from com.something.Stock as stock, com.something.Bonus as bonus
where stock.someValue = bonus.id

ie. select all stocks whose property someValue points to any bonus from the Bonus table.

Thanks!

flag

8 Answers

vote up 2 vote down check

@Sébastien Rocca-Serra
Now we're getting somewhere concrete. The sort of join you're trying to do isn't really possible through the Criteria API, but a sub-query should accomplish the same thing. First you create a DetachedCriteria for the bonus table, then use the IN operator for someValue.

DetachedCriteria bonuses = DetachedCriteria.forClass(Bonus.class);
List stocks = session.createCriteria(Stock.class)
    .add(Property.forName("someValue").in(bonuses)).list();

This is equivalent to

select stock
from com.something.Stock as stock
where stock.someValue in (select bonus.id from com.something.Bonus as bonus)

The only downside would be if you have references to different tables in someValue and your ID's are not unique across all tables. But your query would suffer from the same flaw.

link|flag
Thanks, it's what I needed. I added a projection on the id field in the first criteria: bonuses.setProjection(Property.forName("id")); Is it required / good practice / bad practice ? Why ? Thanks again. – Sébastien RoccaSerra Jul 15 at 14:56
vote up 5 vote down

Doesn't the Criteria API do it for you? It looks almost exactly like what you're asking for.

link|flag
Bingo. Works just great for me. – Stu Thompson Sep 11 '08 at 15:24
vote up 4 vote down

It looks like you want to use the Criteria query API built into Hibernate. To do your above query it would look like this:

List<Stock> stocks = session.createCriteria(Stock.class)
    .add(Property.forName("id").eq(id))
    .list();

If you don't have access to the Hibernate Session yet, you can used 'DetachedCriteria' like so:

DetachedCriteria criteria = DetachedCriteria.forClass(Stock.class) 
    .add(Property.forName("id").eq(id));

If you wanted to get all Stock that have a Bonus with a specific ID you could do the following:

DetachedCriteria criteria = DetachedCriteria.forClass(Stock.class)
     .createCriteria("Stock")
          .add(Property.forName("id").eq(id)));

For more infromation check out Criteria Queries from the Hibernate docs

link|flag
vote up 2 vote down

@Sébastien Rocca-Serra

select stock
from com.something.Stock as stock, com.something.Bonus as bonus
where stock.bonus.id = bonus.id

That's just a join. Hibernate does it automatically, if and only if you've got the mapping between Stock and Bonus setup and if bonus is a property of Stock. Criteria.list() will return Stock objects and you just call stock.getBonus().

Note, if you want to do anything like

select stock
from com.something.Stock as stock
where stock.bonus.value > 1000000

You need to use Criteria.createAlias(). It'd be something like

session.createCriteria(Stock.class).createAlias("bonus", "b")
   .add(Restrictions.gt("b.value", 1000000)).list()
link|flag
Thanks for the replies, I'm getting close! But I'm trying to select all stocks whose property someValue points to any bonus from the Bonus table... – Sébastien RoccaSerra Sep 11 '08 at 16:20
vote up 2 vote down

Criteria API does not provide all functionality avaiable in HQL. For example, you cannot do more than one join over the same column.

Why don't you use NAMED QUERIES? The look much more clean:

Person person = session.getNamedQuery("Person.findByName")
                             .setString(0, "Marcio")
                             .list();
link|flag
vote up 1 vote down

I wrote a GPL'd solution for OMERO which you could easily build suited to your situation.

Usage:

QueryBuilder qb = new QueryBuilder();
qb.select("img");
qb.from("Image", "img");
qb.join("img.pixels", "pix", true, false);

// Can't join anymore after this
qb.where(); // First
qb.append("(");
qb.and("pt.details.creationTime > :time");
qb.param("time", new Date());
qb.append(")");
qb.and("img.id in (:ids)");
qb.paramList("ids", new HashSet());
qb.order("img.id", true);
qb.order("this.details.creationEvent.time", false);

It functions as a state machine "select->from->join->where->order", etc. and keeps up with optional parameters. There were several queries which the Criteria API could not perform (see HHH-879), so in the end it was simpler to write this small class to wrap StringBuilder. (Note: there is a ticket HHH-2407 describing a Hibernate branch which should unify the two. After that, it would probably make sense to re-visit the Criteria API)

link|flag
Interesting, thanks! – Sébastien RoccaSerra Feb 25 at 16:52
vote up 0 vote down

@sblundy, @Alex Argo

Thanks for the replies, I'm getting close! But I'm trying to select all stocks whose property someValue points to any bonus from the Bonus table, ie:

select stock
from com.something.Stock as stock, com.something.Bonus as bonus
where stock.someValue = bonus.id

With Criteria, I'm stuck in the eq statement:

DetachedCriteria criteria = DetachedCriteria.forClass(Stock.class)
    .createCriteria("Stock")
    .add(Property.forName("someValue").eq( ?? ); // I'm stuck here!

Thanks again!

link|flag
vote up 0 vote down

Take a look at the search package available from the hibernate-generic-dao project. This is a pretty decent HQL Builder implementation.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.