boa tarde pessoal,
estou com o seguinte problema estou tentando validar o login buscando na base os dados no usuario e senha no caso LOGIN e SENHA
aqui esta o meu DaoUsuario
[code]public class DAOUsuario {
public boolean existe(Usuario usuario){
EntityManager em = new JPAUtil().getEntityManager();
em.getTransaction().begin();
Query query = em.createQuery("from usuario u where u.login = " + " :pLogin and u.senha = :pSenha");
query.setParameter("pLogin", usuario.getLogin());
query.setParameter("pSenha", usuario.getSenha());
boolean encontrado = !query.getResultList().isEmpty();
em.getTransaction().commit();
em.close();
return encontrado;
}[/code]
e aqui esta o meu arquivo xhtml
[code]<h:head>
<h:outputStylesheet library=“css” name=“grid.css” />
<h:outputStylesheet library=“css” name=“style.css” />
</h:head>
<h:body>
Login no Sistema
<h:form>
<h:panelGrid columns=“2” styleClass=“campos”>
<h:outputLabel value=“Login:” />
<h:inputText value="#{loginBean.usuario.login}" />
<h:outputLabel value="Senha:" />
<h:inputSecret value="#{loginBean.usuario.senha}" />
<h:commandButton value="Efetuar Login"
action="#{loginBean.efetuaLogin}" />
</h:panelGrid>
</h:form>
</dir>
</div>
<div id="blocoRodape">
<div class="container">
<p>Copyright 2012. Todos os direitos reservados a Rheyder Abud</p>
</div>
</div>
</h:body>
[/code]alguem poderia dar uma luz ai o erro é esse
org.hibernate.hql.ast.QuerySyntaxException: usuario is not mapped [from usuario u where u.login = :pLogin and u.senha = :pSenha]