I am looking for an alternative to Specifications for the given scenario












0















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










share|improve this question

























  • I suggest you try it to see if it works.

    – Robert Niestroj
    Nov 22 '18 at 14:27
















0















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










share|improve this question

























  • I suggest you try it to see if it works.

    – Robert Niestroj
    Nov 22 '18 at 14:27














0












0








0








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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












2 Answers
2






active

oldest

votes


















2














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);
}





share|improve this answer































    1














    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.






    share|improve this answer























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      2














      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);
      }





      share|improve this answer




























        2














        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);
        }





        share|improve this answer


























          2












          2








          2







          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);
          }





          share|improve this answer













          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);
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 22 '18 at 14:27









          Robert NiestrojRobert Niestroj

          7,74564579




          7,74564579

























              1














              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.






              share|improve this answer




























                1














                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.






                share|improve this answer


























                  1












                  1








                  1







                  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.






                  share|improve this answer













                  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.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 22 '18 at 14:25









                  Samyak JainSamyak Jain

                  372




                  372






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      404 Error Contact Form 7 ajax form submitting

                      How to know if a Active Directory user can login interactively

                      TypeError: fit_transform() missing 1 required positional argument: 'X'