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?
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
⌛
This post has been reserved for your question.
Hey @Franscis123$#! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose 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.
i think the best choice would be using jpql to write the query and execute it
em.createQuery()
should work
or alternatively use a typed queryIf I need to use PersistenceContext, this will affect to others methods that uses 'em' ?
Didn't you say something about not using a framework?
and what do you mean with affecting other methods?
Nothing, now I see that 'em' is initialized individually in each method and not globally.
I build my method like this, what you think?
looks good
💤
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.