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().