Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get table column names in Hibernate

I am using hibernate Criteria class to get all records of table :

Criteria criteria = session.createCriteria(AppTaskConfig.class)

I would like to get column names also as I need to convert result set into JSON format.

like image 341
abhinav singh Avatar asked Oct 17 '13 04:10

abhinav singh


2 Answers

To get the column names, first you need to find the properties of the entity using org.hibernate.metadata.ClassMetadata:

ClassMetadata classMetadata = sessionFactory.getClassMetadata(AppTaskConfig.class);
String[] propertyNames = classMetadata.getPropertyNames();

where propertyNames is an array of Strings representing the property names of AppTaskConfig.

Now using Hibernate org.hibernate.cfg.Configuration object you can find the column names of the properties:

for (String property : propertyNames) {
    Configuration configuration = sessionFactoryBean.getConfiguration();
    PersistentClass persistentClass = configuration
                    .getClassMapping(Details.class.getName());
    String columnName = ((Column) persistentClass.getProperty(property)
                    .getColumnIterator().next()).getName();
}
like image 131
Debojit Saikia Avatar answered Nov 08 '22 11:11

Debojit Saikia


An easier way to get column name with hibernate 5

final AbstractEntityPersister classMetadata = (AbstractEntityPersister) sessionFactory.getClassMetadata(clazz)
final String[] names = classMetadata.getPropertyColumnNames(property)

With hibernate 4, I do just like @Debojit Saikia

like image 2
jpozorio Avatar answered Nov 08 '22 12:11

jpozorio