show/hide this revision's text 3 added 2 characters in body; edited title

How to JPA query's see SQL query using Hibernate Tool Tools in Eclipse?

Having installed Hibernate Tool Tools in Eclipse, how can I view the would-be generated SQL query of from the JPA query language? (I'm using Hibernate as my JPA implementation)

My Java DAO class looks something like:

public List<Person> findById(int id)
{
    return entityManager.find(Person.class, id);
}
public List<Person> find(String name)
{
    Query q = entityManager.createQuery("SELECT p FROM Person p WHERE name=?");
    q.setParameter(1, name);
    return q.getResultList();
}

I want to see what the corresponding SQL query will be. I've heard that Hibernate Tool Tools has some kind of support for this.

show/hide this revision's text 2 Change hibernate-tools to hibernate-tool

How to JPA query's SQL query using Hibernate Tools Tool in Eclipse?

Having installed Hibernate Tools Tool in Eclipse, how can I view the would-be generated SQL query of from the JPA query language? (I'm using Hibernate as my JPA implementation)

My Java DAO class looks something like:

public List<Person> findById(int id)
{
    return entityManager.find(Person.class, id);
}
public List<Person> find(String name)
{
    Query q = entityManager.createQuery("SELECT p FROM Person p WHERE name=?");
    q.setParameter(1, name);
    return q.getResultList();
}

I want to see what the corresponding SQL query will be. I've heard that Hibernate Tools Tool has some kind of support for this.

show/hide this revision's text 1

How to JPA query's SQL query using Hibernate Tools in Eclipse?

Having installed Hibernate Tools in Eclipse, how can I view the would-be generated SQL query of from the JPA query language? (I'm using Hibernate as my JPA implementation)

My Java DAO class looks something like:

public List<Person> findById(int id)
{
    return entityManager.find(Person.class, id);
}
public List<Person> find(String name)
{
    Query q = entityManager.createQuery("SELECT p FROM Person p WHERE name=?");
    q.setParameter(1, name);
    return q.getResultList();
}

I want to see what the corresponding SQL query will be. I've heard that Hibernate Tools has some kind of support for this.