New to Play as well as JPA,Is there any better way to handle Exceptions using Play framework apart from what am using?
Query q = JPA.em().createQuery("SELECT u FROM "+User.class.getName()
+" u WHERE userCode = :userCd AND password =
:password")
.setParameter("userCd",userName)
.setParameter("password",password);
User user=null;
try{
user = (User) q.getSingleResult();
}catch (NoResultException n)
{
flash.put("username",userName);
flash.error("Invalid Credentials");
index();
}
What I am trying to achieve is so simple, User validation.As of now the above code works properly but wanted to know from anyone to assist me if there is any better way to handle Exceptions in Play apart from this?