Hibernate @Filter not filtering foreign key entities
up vote
0
down vote
favorite
I am using spring-data-rest and hibernate @Filter
in order to filter soft-deleted entities. I want to filter soft-deleted entities even if an entity is called by its id in the exposed REST API.
Some of the other solutions I saw and their associated problems are:
- Using
@Where
clause over the@OneToMany
(or other mapping) fields to set thedeleted = false
. But I would rather not have any such hard queries in my entity as it will lock me up from querying other things. - I have a custom
SoftDeletablePagingSortingQuerydslRepositoryImpl
class which reimplements all the query methods and I can delegate thefindOne
method tofindAll
which should handle filter. But the issue with this is that it is not handling filtering of the foreign keys. - I use something like this but the answer is very old and it doesn't seem to work anymore.
What is the solution to this issue?
java hibernate spring-data-jpa spring-data-rest
add a comment |
up vote
0
down vote
favorite
I am using spring-data-rest and hibernate @Filter
in order to filter soft-deleted entities. I want to filter soft-deleted entities even if an entity is called by its id in the exposed REST API.
Some of the other solutions I saw and their associated problems are:
- Using
@Where
clause over the@OneToMany
(or other mapping) fields to set thedeleted = false
. But I would rather not have any such hard queries in my entity as it will lock me up from querying other things. - I have a custom
SoftDeletablePagingSortingQuerydslRepositoryImpl
class which reimplements all the query methods and I can delegate thefindOne
method tofindAll
which should handle filter. But the issue with this is that it is not handling filtering of the foreign keys. - I use something like this but the answer is very old and it doesn't seem to work anymore.
What is the solution to this issue?
java hibernate spring-data-jpa spring-data-rest
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using spring-data-rest and hibernate @Filter
in order to filter soft-deleted entities. I want to filter soft-deleted entities even if an entity is called by its id in the exposed REST API.
Some of the other solutions I saw and their associated problems are:
- Using
@Where
clause over the@OneToMany
(or other mapping) fields to set thedeleted = false
. But I would rather not have any such hard queries in my entity as it will lock me up from querying other things. - I have a custom
SoftDeletablePagingSortingQuerydslRepositoryImpl
class which reimplements all the query methods and I can delegate thefindOne
method tofindAll
which should handle filter. But the issue with this is that it is not handling filtering of the foreign keys. - I use something like this but the answer is very old and it doesn't seem to work anymore.
What is the solution to this issue?
java hibernate spring-data-jpa spring-data-rest
I am using spring-data-rest and hibernate @Filter
in order to filter soft-deleted entities. I want to filter soft-deleted entities even if an entity is called by its id in the exposed REST API.
Some of the other solutions I saw and their associated problems are:
- Using
@Where
clause over the@OneToMany
(or other mapping) fields to set thedeleted = false
. But I would rather not have any such hard queries in my entity as it will lock me up from querying other things. - I have a custom
SoftDeletablePagingSortingQuerydslRepositoryImpl
class which reimplements all the query methods and I can delegate thefindOne
method tofindAll
which should handle filter. But the issue with this is that it is not handling filtering of the foreign keys. - I use something like this but the answer is very old and it doesn't seem to work anymore.
What is the solution to this issue?
java hibernate spring-data-jpa spring-data-rest
java hibernate spring-data-jpa spring-data-rest
asked 21 hours ago
Sayak Mukhopadhyay
426418
426418
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f53371377%2fhibernate-filter-not-filtering-foreign-key-entities%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