|
|
I am trying to use HQL in one of the screen
def searchQuery="Select p from Provider where p.accountId =1"
def results=Provider.findAll(searchQuery)
the moment it tries to execute this query , then I get the following error, it's happening only when I deploy in weblogic 10.x server.
[759624] errors.GrailsExceptionResolver org.springframework.orm.hibernate3.HibernateQueryException: ClassNotFoundException: org.hibernate.hql.ast.HqlToken [Select p from Provider where p.accountId =1]
I looked into the war file and I can found all the jars inside the lib folder.
Can anybody help me on this ????
|