Suppose that I have the following HQL:

String hql = "select e.aField from MyEntity as e";

If I want to refactor and change the name of the MyEntity's member variable aField to something else, I also have to change all occurrences in the whole code in Strings. If I forget to change one hql string the code breaks.

How can I avoid this from happening?

link|improve this question

75% accept rate
feedback

5 Answers

You can used NamedQueries - you put your HQL as value of annotation on any entity and they are compiled to SQL at start-up time. if you have any errors in hql you wont be able to start your WebApp.

link|improve this answer
feedback

Use an IDE that's smart enough to know how to do it for you, like IntelliJ. If I rename a class or variable, IntelliJ finds every use and manages the change for me.

link|improve this answer
feedback

you cannot since they are only strings (hard to refactoring by definition)

link|improve this answer
feedback

Options: 1. Use Criteria instead of HQL 2. Use NHibernateToLinq 3. create an enum of all of your attributes for each class and use that in you HQL (concatenation required)

link|improve this answer
1  
With criteria you also need to have the field names as strings. Restrictions.eq("fieldname", foo) - this has the same problem with refactoring. – davidsheldon Jun 9 '09 at 22:19
feedback

In an attempt to avoid usign hard-coded property names, I created a method that helps...

/**
 * Get a Hibernate property name safely
 * <p>
 * Using this method to get Hibernate property names instead of hard-coding them ensures the following:
 * <ul>
 * <li>If the Hibernate property name is changed, the code will contain compile time errors which will identify
 * incorrect property name values in the code.
 * <li>A runtime error will <b>never</b> occur due to a typo in a property name.
 * </ul>
 * <p>
 * An example of use:<br>
 * <i> Person tmpPerson = new Person();<br>
 * String propName = HibernateUtil.getPropertyName(tmpPerson.getFirstName(), "getFirstName"); </i>
 * 
 * @param methodChecker
 *            An ignored value. This parameter is a place-holder for a call to the the "get" method that is used to
 *            retrieve the property of interest.
 * @param methodName
 *            The name of the "get" method used to retrieve the property of interest.
 * @return the property name
 */
public static String getPropertyName(Object methodChecker, String methodName)
{
    String propertyName = null;
    if (methodName.startsWith("get"))
        propertyName = methodName.substring(3, 4).toLowerCase() + methodName.substring(4);
    else if (methodName.startsWith("is"))
        propertyName = methodName.substring(2, 3).toLowerCase() + methodName.substring(3);
    else
        TestingHelpers.whyDidThisHappen("Logic wrong here");

    return propertyName;
}

I use it like this:

// Create a temporary Hibernate to avoid hard-coding Hibernate property names
Person tmpPerson = new Person();

/*
* Use the tmpPerson object to call the "get" method that 
* returns the property of interest (FirstName in this case).
*
* Then, provide the name of that method as the second 
* argument to getPropertyName so that any future changes
* to the Hibernate class will result in a compile time error
* due to the missing "get" method.
*/

List<?> questions = session
    .createCriteria(Person.class)
    .add(Restrictions.eq(HibernateUtil.getPropertyName(
    tmpPerson.getFirstName(), "getFirstName"), "Robert")).list();

I would like to improve this by changing getPropertyName to work something like this:

public static String getPropertyName(Method aGetMethod)
{
    // Get the method name

    // strip off the "is" or "get"

    // return the propertyName
}

And use it like this:

String propertyName = getPropertyName(getMethodFor(tmpPerson.getFirstName()));

However, I am not sure how to code getMethodFor().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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