Meus caros,
Peguei o exemplo abaixo na documentação do hibernate-annotatios e tentei executá-lo, porém recebo o erro:
org.hibernate.MappingException: Named query not known: night.moreRecentThan
O que está faltando para funcionar?
Muito obrigado,
Marques
[code]
@Entity
@NamedQuery(name=“night.moreRecentThan”, query=“select n from Night n where n.date >= :date”)
public class Night {
…
}
public class MyDao {
doStuff() {
Query q = s.getNamedQuery(“night.moreRecentThan”);
q.setDate( “date”, aMonthAgo );
List results = q.list();
…
}
…
}[/code]