Boa tarde senhores
Estou tentando implementar uma tela de login e senha, mas esta ocorrendo um erro Segui abaixo o codigo e o erro
// CODIGO
@SuppressWarnings(“unchecked”)
@Override
public Usuario login(String p_login, String p_senha) {
List<Usuario> result = getHibernateTemplate().find("from usuario u where u.login =? and u.senha =?" , new String [] {p_login, p_senha});
return (Usuario) DataAccessUtils.requiredSingleResult(result);
}
//ERRO
[BlazeDS]04/02/2010 [ERROR] [Message.Remoting] Error processing remote invocation: java.lang.Exception: Não foi possível procurar pela ID.usuario is not mapped [from usuario u where u.login =? and u.senha =?]; nested exception is org.hibernate.hql.ast.QuerySyntaxException: usuario is not mapped [from usuario u where u.login =? and u.senha =?]
valewww