Spring Data Rest Repository skipped property type problem











up vote
0
down vote

favorite












I'm exposing my polimorfic model to spring rest repository, and my problem is when i'm trying to get all advertisements from db using created repo,
field "type" created by @JsonTypeInfo is ommited. When i'm getting my ads using same repo method "findAllAdvertisements(Pageable pageable)" in custom rest controller everything is fine



@Entity
@Table(name = "advertisements")
public class Advertisement {}

@Entity
@Table(name = "properties")
@Inheritance(strategy = InheritanceType.JOINED)
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type")
@JsonSubTypes({
@JsonSubTypes.Type(value = Flat.class, name = "flat"),
@JsonSubTypes.Type(value = Ground.class, name = "ground"),
@JsonSubTypes.Type(value = House.class, name = "house")
})
public class Property {}

@Entity
public class Flat extends Property {}

@Entity
public class Ground extends Property {}

@Entity
public class House extends Property {}


json result using repo



{
"title" : "title 1",
"price" : 100000.00,
"description" : "description 1",
"createdDate" : "09-11-2018",
"property" : {
"localization" : "localization 1",
"area" : 100.0,
"floorsNumber" : 1,
"roomsNumber" : 1
},
"_links" : {
"self" : {
"href" : "http://localhost:8080/advertisements/1"
},
"advertisement" : {
"href" : "http://localhost:8080/advertisements/1"
}
}
}


json result using custom controller



{
"id" : 1,
"title" : "title 1",
"price" : 100000.00,
"description" : "description 1",
"createdDate" : "09-11-2018",
"property" : {
"type" : "flat",
"id" : 2,
"localization" : "localization 1",
"area" : 100.0,
"floorsNumber" : 1,
"roomsNumber" : 1
}
}









share|improve this question


























    up vote
    0
    down vote

    favorite












    I'm exposing my polimorfic model to spring rest repository, and my problem is when i'm trying to get all advertisements from db using created repo,
    field "type" created by @JsonTypeInfo is ommited. When i'm getting my ads using same repo method "findAllAdvertisements(Pageable pageable)" in custom rest controller everything is fine



    @Entity
    @Table(name = "advertisements")
    public class Advertisement {}

    @Entity
    @Table(name = "properties")
    @Inheritance(strategy = InheritanceType.JOINED)
    @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type")
    @JsonSubTypes({
    @JsonSubTypes.Type(value = Flat.class, name = "flat"),
    @JsonSubTypes.Type(value = Ground.class, name = "ground"),
    @JsonSubTypes.Type(value = House.class, name = "house")
    })
    public class Property {}

    @Entity
    public class Flat extends Property {}

    @Entity
    public class Ground extends Property {}

    @Entity
    public class House extends Property {}


    json result using repo



    {
    "title" : "title 1",
    "price" : 100000.00,
    "description" : "description 1",
    "createdDate" : "09-11-2018",
    "property" : {
    "localization" : "localization 1",
    "area" : 100.0,
    "floorsNumber" : 1,
    "roomsNumber" : 1
    },
    "_links" : {
    "self" : {
    "href" : "http://localhost:8080/advertisements/1"
    },
    "advertisement" : {
    "href" : "http://localhost:8080/advertisements/1"
    }
    }
    }


    json result using custom controller



    {
    "id" : 1,
    "title" : "title 1",
    "price" : 100000.00,
    "description" : "description 1",
    "createdDate" : "09-11-2018",
    "property" : {
    "type" : "flat",
    "id" : 2,
    "localization" : "localization 1",
    "area" : 100.0,
    "floorsNumber" : 1,
    "roomsNumber" : 1
    }
    }









    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm exposing my polimorfic model to spring rest repository, and my problem is when i'm trying to get all advertisements from db using created repo,
      field "type" created by @JsonTypeInfo is ommited. When i'm getting my ads using same repo method "findAllAdvertisements(Pageable pageable)" in custom rest controller everything is fine



      @Entity
      @Table(name = "advertisements")
      public class Advertisement {}

      @Entity
      @Table(name = "properties")
      @Inheritance(strategy = InheritanceType.JOINED)
      @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type")
      @JsonSubTypes({
      @JsonSubTypes.Type(value = Flat.class, name = "flat"),
      @JsonSubTypes.Type(value = Ground.class, name = "ground"),
      @JsonSubTypes.Type(value = House.class, name = "house")
      })
      public class Property {}

      @Entity
      public class Flat extends Property {}

      @Entity
      public class Ground extends Property {}

      @Entity
      public class House extends Property {}


      json result using repo



      {
      "title" : "title 1",
      "price" : 100000.00,
      "description" : "description 1",
      "createdDate" : "09-11-2018",
      "property" : {
      "localization" : "localization 1",
      "area" : 100.0,
      "floorsNumber" : 1,
      "roomsNumber" : 1
      },
      "_links" : {
      "self" : {
      "href" : "http://localhost:8080/advertisements/1"
      },
      "advertisement" : {
      "href" : "http://localhost:8080/advertisements/1"
      }
      }
      }


      json result using custom controller



      {
      "id" : 1,
      "title" : "title 1",
      "price" : 100000.00,
      "description" : "description 1",
      "createdDate" : "09-11-2018",
      "property" : {
      "type" : "flat",
      "id" : 2,
      "localization" : "localization 1",
      "area" : 100.0,
      "floorsNumber" : 1,
      "roomsNumber" : 1
      }
      }









      share|improve this question













      I'm exposing my polimorfic model to spring rest repository, and my problem is when i'm trying to get all advertisements from db using created repo,
      field "type" created by @JsonTypeInfo is ommited. When i'm getting my ads using same repo method "findAllAdvertisements(Pageable pageable)" in custom rest controller everything is fine



      @Entity
      @Table(name = "advertisements")
      public class Advertisement {}

      @Entity
      @Table(name = "properties")
      @Inheritance(strategy = InheritanceType.JOINED)
      @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type")
      @JsonSubTypes({
      @JsonSubTypes.Type(value = Flat.class, name = "flat"),
      @JsonSubTypes.Type(value = Ground.class, name = "ground"),
      @JsonSubTypes.Type(value = House.class, name = "house")
      })
      public class Property {}

      @Entity
      public class Flat extends Property {}

      @Entity
      public class Ground extends Property {}

      @Entity
      public class House extends Property {}


      json result using repo



      {
      "title" : "title 1",
      "price" : 100000.00,
      "description" : "description 1",
      "createdDate" : "09-11-2018",
      "property" : {
      "localization" : "localization 1",
      "area" : 100.0,
      "floorsNumber" : 1,
      "roomsNumber" : 1
      },
      "_links" : {
      "self" : {
      "href" : "http://localhost:8080/advertisements/1"
      },
      "advertisement" : {
      "href" : "http://localhost:8080/advertisements/1"
      }
      }
      }


      json result using custom controller



      {
      "id" : 1,
      "title" : "title 1",
      "price" : 100000.00,
      "description" : "description 1",
      "createdDate" : "09-11-2018",
      "property" : {
      "type" : "flat",
      "id" : 2,
      "localization" : "localization 1",
      "area" : 100.0,
      "floorsNumber" : 1,
      "roomsNumber" : 1
      }
      }






      json spring rest repository






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      Joseph Branch

      35




      35





























          active

          oldest

          votes











          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',
          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%2f53237852%2fspring-data-rest-repository-skipped-property-type-problem%23new-answer', 'question_page');
          }
          );

          Post as a guest





































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237852%2fspring-data-rest-repository-skipped-property-type-problem%23new-answer', 'question_page');
          }
          );

          Post as a guest




















































































          Popular posts from this blog

          Full-time equivalent

          Bicuculline

          さくらももこ