I am looking for an alternative to Specifications for the given scenario
I am calling findall()
method of the JpaRepository as following
Service
on.findall(specificationsbuilder.getspecifications(params), paegable obj)
specificationsbuilder.getspecifications(param)
returns specifications
My question is if specifications is null will my will findall(specifications,paegable) work
java spring hibernate spring-data-jpa jpa-criteria
add a comment |
I am calling findall()
method of the JpaRepository as following
Service
on.findall(specificationsbuilder.getspecifications(params), paegable obj)
specificationsbuilder.getspecifications(param)
returns specifications
My question is if specifications is null will my will findall(specifications,paegable) work
java spring hibernate spring-data-jpa jpa-criteria
I suggest you try it to see if it works.
– Robert Niestroj
Nov 22 '18 at 14:27
add a comment |
I am calling findall()
method of the JpaRepository as following
Service
on.findall(specificationsbuilder.getspecifications(params), paegable obj)
specificationsbuilder.getspecifications(param)
returns specifications
My question is if specifications is null will my will findall(specifications,paegable) work
java spring hibernate spring-data-jpa jpa-criteria
I am calling findall()
method of the JpaRepository as following
Service
on.findall(specificationsbuilder.getspecifications(params), paegable obj)
specificationsbuilder.getspecifications(param)
returns specifications
My question is if specifications is null will my will findall(specifications,paegable) work
java spring hibernate spring-data-jpa jpa-criteria
java spring hibernate spring-data-jpa jpa-criteria
edited Nov 22 '18 at 13:54
Alien
4,85331026
4,85331026
asked Nov 22 '18 at 13:42
SarthakSarthak
153
153
I suggest you try it to see if it works.
– Robert Niestroj
Nov 22 '18 at 14:27
add a comment |
I suggest you try it to see if it works.
– Robert Niestroj
Nov 22 '18 at 14:27
I suggest you try it to see if it works.
– Robert Niestroj
Nov 22 '18 at 14:27
I suggest you try it to see if it works.
– Robert Niestroj
Nov 22 '18 at 14:27
add a comment |
2 Answers
2
active
oldest
votes
According to the sourcecode of SimpleJpaRepository it should work, because @Nullable says it will accept null:
@Override
public Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable) {
TypedQuery<T> query = getQuery(spec, pageable);
return isUnpaged(pageable) ? new PageImpl<T>(query.getResultList())
: readPage(query, getDomainClass(), pageable, spec);
}
add a comment |
read here : https://jira.spring.io/browse/DATAJPA-121, as of latest spring data jpa, the query will automatically form is null if your parameter is null.
Also, Since Spring data jpa 2.0, spring now supports @Nullable annotation. This can be helpful to handle null parameters passed.
@Nullable – to be used on a parameter or return value that can be null.
if the value is null it will automatically return true and if is not null, it will search that value in the table.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f53432311%2fi-am-looking-for-an-alternative-to-specifications-for-the-given-scenario%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the sourcecode of SimpleJpaRepository it should work, because @Nullable says it will accept null:
@Override
public Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable) {
TypedQuery<T> query = getQuery(spec, pageable);
return isUnpaged(pageable) ? new PageImpl<T>(query.getResultList())
: readPage(query, getDomainClass(), pageable, spec);
}
add a comment |
According to the sourcecode of SimpleJpaRepository it should work, because @Nullable says it will accept null:
@Override
public Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable) {
TypedQuery<T> query = getQuery(spec, pageable);
return isUnpaged(pageable) ? new PageImpl<T>(query.getResultList())
: readPage(query, getDomainClass(), pageable, spec);
}
add a comment |
According to the sourcecode of SimpleJpaRepository it should work, because @Nullable says it will accept null:
@Override
public Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable) {
TypedQuery<T> query = getQuery(spec, pageable);
return isUnpaged(pageable) ? new PageImpl<T>(query.getResultList())
: readPage(query, getDomainClass(), pageable, spec);
}
According to the sourcecode of SimpleJpaRepository it should work, because @Nullable says it will accept null:
@Override
public Page<T> findAll(@Nullable Specification<T> spec, Pageable pageable) {
TypedQuery<T> query = getQuery(spec, pageable);
return isUnpaged(pageable) ? new PageImpl<T>(query.getResultList())
: readPage(query, getDomainClass(), pageable, spec);
}
answered Nov 22 '18 at 14:27
Robert NiestrojRobert Niestroj
7,74564579
7,74564579
add a comment |
add a comment |
read here : https://jira.spring.io/browse/DATAJPA-121, as of latest spring data jpa, the query will automatically form is null if your parameter is null.
Also, Since Spring data jpa 2.0, spring now supports @Nullable annotation. This can be helpful to handle null parameters passed.
@Nullable – to be used on a parameter or return value that can be null.
if the value is null it will automatically return true and if is not null, it will search that value in the table.
add a comment |
read here : https://jira.spring.io/browse/DATAJPA-121, as of latest spring data jpa, the query will automatically form is null if your parameter is null.
Also, Since Spring data jpa 2.0, spring now supports @Nullable annotation. This can be helpful to handle null parameters passed.
@Nullable – to be used on a parameter or return value that can be null.
if the value is null it will automatically return true and if is not null, it will search that value in the table.
add a comment |
read here : https://jira.spring.io/browse/DATAJPA-121, as of latest spring data jpa, the query will automatically form is null if your parameter is null.
Also, Since Spring data jpa 2.0, spring now supports @Nullable annotation. This can be helpful to handle null parameters passed.
@Nullable – to be used on a parameter or return value that can be null.
if the value is null it will automatically return true and if is not null, it will search that value in the table.
read here : https://jira.spring.io/browse/DATAJPA-121, as of latest spring data jpa, the query will automatically form is null if your parameter is null.
Also, Since Spring data jpa 2.0, spring now supports @Nullable annotation. This can be helpful to handle null parameters passed.
@Nullable – to be used on a parameter or return value that can be null.
if the value is null it will automatically return true and if is not null, it will search that value in the table.
answered Nov 22 '18 at 14:25
Samyak JainSamyak Jain
372
372
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.
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%2f53432311%2fi-am-looking-for-an-alternative-to-specifications-for-the-given-scenario%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
I suggest you try it to see if it works.
– Robert Niestroj
Nov 22 '18 at 14:27