With JPA Mapped Entities with one-to-many relationships, how can I add join criterias
up vote
1
down vote
favorite
Given the situation: The database was created when Hibernate wasn't born yet, we talk true legacy here.
I have tables that never have deleted records, just setting an active flag on the row to mark an entry as currently in use. Queries usually look like:
SELECT * from A left join B on A.id = B.a_id and B.active = 1
With Entity A and B defined in Java, and A has a property
@OneToMany
private Set<B> b;
How do I annotate the property to add the criteria "and B.active=1"?
JPA-solution preferred, but if necessary we can use hibernate annotations too.
In a similar way we have cases where entries have an active date range, so we would have to add a criteria similar to
"and B.active_From >= now() and (B.active_to is null or B.active_to < now())"
hibernate jpa
add a comment |
up vote
1
down vote
favorite
Given the situation: The database was created when Hibernate wasn't born yet, we talk true legacy here.
I have tables that never have deleted records, just setting an active flag on the row to mark an entry as currently in use. Queries usually look like:
SELECT * from A left join B on A.id = B.a_id and B.active = 1
With Entity A and B defined in Java, and A has a property
@OneToMany
private Set<B> b;
How do I annotate the property to add the criteria "and B.active=1"?
JPA-solution preferred, but if necessary we can use hibernate annotations too.
In a similar way we have cases where entries have an active date range, so we would have to add a criteria similar to
"and B.active_From >= now() and (B.active_to is null or B.active_to < now())"
hibernate jpa
Are you using Spring Framework with JPA?
– Gaurav Srivastav
Nov 20 at 5:24
Hibernate specific solution is the only option here. See the paragraph on@Where
here: baeldung.com/hibernate-dynamic-mapping. Hibernate also offers dynamic Filters however@Where
seems to be what you are looking for. docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/…
– Alan Hay
Nov 20 at 9:16
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Given the situation: The database was created when Hibernate wasn't born yet, we talk true legacy here.
I have tables that never have deleted records, just setting an active flag on the row to mark an entry as currently in use. Queries usually look like:
SELECT * from A left join B on A.id = B.a_id and B.active = 1
With Entity A and B defined in Java, and A has a property
@OneToMany
private Set<B> b;
How do I annotate the property to add the criteria "and B.active=1"?
JPA-solution preferred, but if necessary we can use hibernate annotations too.
In a similar way we have cases where entries have an active date range, so we would have to add a criteria similar to
"and B.active_From >= now() and (B.active_to is null or B.active_to < now())"
hibernate jpa
Given the situation: The database was created when Hibernate wasn't born yet, we talk true legacy here.
I have tables that never have deleted records, just setting an active flag on the row to mark an entry as currently in use. Queries usually look like:
SELECT * from A left join B on A.id = B.a_id and B.active = 1
With Entity A and B defined in Java, and A has a property
@OneToMany
private Set<B> b;
How do I annotate the property to add the criteria "and B.active=1"?
JPA-solution preferred, but if necessary we can use hibernate annotations too.
In a similar way we have cases where entries have an active date range, so we would have to add a criteria similar to
"and B.active_From >= now() and (B.active_to is null or B.active_to < now())"
hibernate jpa
hibernate jpa
asked Nov 20 at 5:22
Kai
7701027
7701027
Are you using Spring Framework with JPA?
– Gaurav Srivastav
Nov 20 at 5:24
Hibernate specific solution is the only option here. See the paragraph on@Where
here: baeldung.com/hibernate-dynamic-mapping. Hibernate also offers dynamic Filters however@Where
seems to be what you are looking for. docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/…
– Alan Hay
Nov 20 at 9:16
add a comment |
Are you using Spring Framework with JPA?
– Gaurav Srivastav
Nov 20 at 5:24
Hibernate specific solution is the only option here. See the paragraph on@Where
here: baeldung.com/hibernate-dynamic-mapping. Hibernate also offers dynamic Filters however@Where
seems to be what you are looking for. docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/…
– Alan Hay
Nov 20 at 9:16
Are you using Spring Framework with JPA?
– Gaurav Srivastav
Nov 20 at 5:24
Are you using Spring Framework with JPA?
– Gaurav Srivastav
Nov 20 at 5:24
Hibernate specific solution is the only option here. See the paragraph on
@Where
here: baeldung.com/hibernate-dynamic-mapping. Hibernate also offers dynamic Filters however @Where
seems to be what you are looking for. docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/…– Alan Hay
Nov 20 at 9:16
Hibernate specific solution is the only option here. See the paragraph on
@Where
here: baeldung.com/hibernate-dynamic-mapping. Hibernate also offers dynamic Filters however @Where
seems to be what you are looking for. docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/…– Alan Hay
Nov 20 at 9:16
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
You can use Hibernate's @Where
annotation to filter elements from an association. You can find an example and explanation in this Hibernate Tip.
Here's the short version of it:
You can set an SQL snippet as the value of the clause
attribute of the @Where
annotation. So, your mapping should look like this:
@OneToMany
@Where(clause = "active = 1")
private Set<B> b;
And you can use the same approach to exclude the ones that are not within the time range
@OneToMany
@Where(clause = "active_from >= now() and (active_to is null or active_to < now())")
private Set<B> b;
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You can use Hibernate's @Where
annotation to filter elements from an association. You can find an example and explanation in this Hibernate Tip.
Here's the short version of it:
You can set an SQL snippet as the value of the clause
attribute of the @Where
annotation. So, your mapping should look like this:
@OneToMany
@Where(clause = "active = 1")
private Set<B> b;
And you can use the same approach to exclude the ones that are not within the time range
@OneToMany
@Where(clause = "active_from >= now() and (active_to is null or active_to < now())")
private Set<B> b;
add a comment |
up vote
1
down vote
You can use Hibernate's @Where
annotation to filter elements from an association. You can find an example and explanation in this Hibernate Tip.
Here's the short version of it:
You can set an SQL snippet as the value of the clause
attribute of the @Where
annotation. So, your mapping should look like this:
@OneToMany
@Where(clause = "active = 1")
private Set<B> b;
And you can use the same approach to exclude the ones that are not within the time range
@OneToMany
@Where(clause = "active_from >= now() and (active_to is null or active_to < now())")
private Set<B> b;
add a comment |
up vote
1
down vote
up vote
1
down vote
You can use Hibernate's @Where
annotation to filter elements from an association. You can find an example and explanation in this Hibernate Tip.
Here's the short version of it:
You can set an SQL snippet as the value of the clause
attribute of the @Where
annotation. So, your mapping should look like this:
@OneToMany
@Where(clause = "active = 1")
private Set<B> b;
And you can use the same approach to exclude the ones that are not within the time range
@OneToMany
@Where(clause = "active_from >= now() and (active_to is null or active_to < now())")
private Set<B> b;
You can use Hibernate's @Where
annotation to filter elements from an association. You can find an example and explanation in this Hibernate Tip.
Here's the short version of it:
You can set an SQL snippet as the value of the clause
attribute of the @Where
annotation. So, your mapping should look like this:
@OneToMany
@Where(clause = "active = 1")
private Set<B> b;
And you can use the same approach to exclude the ones that are not within the time range
@OneToMany
@Where(clause = "active_from >= now() and (active_to is null or active_to < now())")
private Set<B> b;
edited Nov 20 at 17:17
answered Nov 20 at 16:57
Thorben Janssen
1956
1956
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386687%2fwith-jpa-mapped-entities-with-one-to-many-relationships-how-can-i-add-join-crit%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you using Spring Framework with JPA?
– Gaurav Srivastav
Nov 20 at 5:24
Hibernate specific solution is the only option here. See the paragraph on
@Where
here: baeldung.com/hibernate-dynamic-mapping. Hibernate also offers dynamic Filters however@Where
seems to be what you are looking for. docs.jboss.org/hibernate/orm/3.6/reference/en-US/html/…– Alan Hay
Nov 20 at 9:16