Can findByNamedQueryAndNamedParam accomodate a Date parameter ? How does it know which binding method to use, as the Hibernate type could be either timestamp, date, or time ?
There does not seem to be anywhere to specify the actual type in the findByNameQuery.... methods of HibernateTemplate.
Does this mean if I have Date parameters that I can not use these methods and instead should just get the session and use the type-specific Hibernate binding methods directly ?


Reply With Quote