Searching DB registers by other field instead PK using JPA

I have a project using JPA without any framework. I want to search registers by others fields like 'username', 'password' instead the primary key. I need to use SQL with JPA to it?
public User findUser(Long id) {
EntityManager em = getEntityManager();
try {
return em.find(User.class, id);
} finally {
em.close();
}
}
public User findUser(Long id) {
EntityManager em = getEntityManager();
try {
return em.find(User.class, id);
} finally {
em.close();
}
}
I tried to create the same method in my JPA controller class using a string instead to the id for the search, obviously this give me a error where I see that the method search a numeric PK. But I can't to do something similar?
8 Replies
JavaBot
JavaBot4d ago
This post has been reserved for your question.
Hey @Franscis123$#! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
ayylmao123xdd
ayylmao123xdd4d ago
i think the best choice would be using jpql to write the query and execute it
dan1st
dan1st4d ago
em.createQuery() should work or alternatively use a typed query
Franscis123$#
Franscis123$#OP4d ago
If I need to use PersistenceContext, this will affect to others methods that uses 'em' ?
dan1st
dan1st4d ago
Didn't you say something about not using a framework? and what do you mean with affecting other methods?
Franscis123$#
Franscis123$#OP4d ago
Nothing, now I see that 'em' is initialized individually in each method and not globally.
public User userByUsername(String username) {

EntityManager em = getEntityManager();

Query query = em.createQuery("SELECT u FROM User u WHERE u.username = :username");

query.setParameter("username", username);

User user;

try { user = (User ) query.getSingleResult(); } catch (NoResultException e) {

System.out.println("User not found");
return null;

}

return user;

}
public User userByUsername(String username) {

EntityManager em = getEntityManager();

Query query = em.createQuery("SELECT u FROM User u WHERE u.username = :username");

query.setParameter("username", username);

User user;

try { user = (User ) query.getSingleResult(); } catch (NoResultException e) {

System.out.println("User not found");
return null;

}

return user;

}
I build my method like this, what you think?
dan1st
dan1st4d ago
looks good
JavaBot
JavaBot4d ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.

Did you find this page helpful?