आप उपयोग कर सकते हैं addScalar(String columnAlias, Type type) अपने मूल SQL के स्तंभ उपनाम को स्पष्ट रूप से घोषित करने के लिए:
getCurrentSession()
.createSQLQuery( "select e.id as id,e.first_name as firstName,e.password as password from xxxxxx")
.addScalar("id",StandardBasicTypes.INTEGER )
.addScalar("firstName",StandardBasicTypes.STRING )
.addScalar("password",StandardBasicTypes.STRING )
.setResultTransformer(Transformers.aliasToBean(Employee.class))
.list();