JSON containing categories and subcategories with Spring MVC rest API










0















I'm trying to setup a Spring MVC Rest API using Angular in front end.
I'm strictly beginner for both technologies and it's a real challenge.



I'm going right to the point : I have an entity which refers to itself. For example, a category can have or not a parent category... For this I generated an Entity from an existing table...



I tried using fetch = fetchtype.eager to get the datas and it didn't provide the expected result.



Here is my Entity :



package com.company.app.model;

import java.io.Serializable;
import javax.persistence.*;

import com.fasterxml.jackson.annotation.JsonBackReference;
import com.fasterxml.jackson.annotation.JsonManagedReference;

import java.util.Date;
import java.util.List;

@Entity
@Table(name="categories")
@NamedQuery(name="Category.findAll", query="SELECT c FROM Category c")
public class Category implements Serializable
private static final long serialVersionUID = 1L;

@Id
@GeneratedValue
private Long id;

....

//bi-directional many-to-one association to Category
@ManyToOne
@JsonManagedReference
private Category category;

//bi-directional many-to-one association to Category
@OneToMany(mappedBy="category", fetch = FetchType.EAGER)
@JsonBackReference
private List<Category> categories;

//bi-directional many-to-one association to CategoryProduct
@OneToMany(mappedBy="category")
@JsonBackReference
private List<CategoryProduct> categoryProducts;


public Category()


// Getters, setters and other methods generated with JPA




My issue is that i would like to generate an Json which the "top level" categories which do not have parents and all their children categories. Technically it would look like this



 [ 

// Top level category
"id":1,
"name":"....",
"desc": "....."
"children" : [

"id":12,
"name":"....",
"desc": "....."
,

"id":14,
"name":"....",
"desc": "....."

...
]
"admin":
"id":1,
"createdAt":1541869810000,
"deletedAt":null,
"email":"david.vera@9online.fr",
"login":"admin",
"name":"Vera",
"password":"admin",
"surname":"David",
"updatedAt":1542150000000
,

]


In my Controller I have a method for listing the categories and it works as expected.



@GetMapping(path="/categories", produces= "application/json")
public List<Category> getAllCategories(Model model)
return categoryRepository.findAll();



Thanks for your help










share|improve this question






















  • From your hibernate relational mappings looks like you are confused about how to use onetomany and manytoone properly.In category entity you are mapping category itself which is totally wrong.please go through hibernate tutorials first and then start implementing.

    – Alien
    Nov 16 '18 at 5:42















0















I'm trying to setup a Spring MVC Rest API using Angular in front end.
I'm strictly beginner for both technologies and it's a real challenge.



I'm going right to the point : I have an entity which refers to itself. For example, a category can have or not a parent category... For this I generated an Entity from an existing table...



I tried using fetch = fetchtype.eager to get the datas and it didn't provide the expected result.



Here is my Entity :



package com.company.app.model;

import java.io.Serializable;
import javax.persistence.*;

import com.fasterxml.jackson.annotation.JsonBackReference;
import com.fasterxml.jackson.annotation.JsonManagedReference;

import java.util.Date;
import java.util.List;

@Entity
@Table(name="categories")
@NamedQuery(name="Category.findAll", query="SELECT c FROM Category c")
public class Category implements Serializable
private static final long serialVersionUID = 1L;

@Id
@GeneratedValue
private Long id;

....

//bi-directional many-to-one association to Category
@ManyToOne
@JsonManagedReference
private Category category;

//bi-directional many-to-one association to Category
@OneToMany(mappedBy="category", fetch = FetchType.EAGER)
@JsonBackReference
private List<Category> categories;

//bi-directional many-to-one association to CategoryProduct
@OneToMany(mappedBy="category")
@JsonBackReference
private List<CategoryProduct> categoryProducts;


public Category()


// Getters, setters and other methods generated with JPA




My issue is that i would like to generate an Json which the "top level" categories which do not have parents and all their children categories. Technically it would look like this



 [ 

// Top level category
"id":1,
"name":"....",
"desc": "....."
"children" : [

"id":12,
"name":"....",
"desc": "....."
,

"id":14,
"name":"....",
"desc": "....."

...
]
"admin":
"id":1,
"createdAt":1541869810000,
"deletedAt":null,
"email":"david.vera@9online.fr",
"login":"admin",
"name":"Vera",
"password":"admin",
"surname":"David",
"updatedAt":1542150000000
,

]


In my Controller I have a method for listing the categories and it works as expected.



@GetMapping(path="/categories", produces= "application/json")
public List<Category> getAllCategories(Model model)
return categoryRepository.findAll();



Thanks for your help










share|improve this question






















  • From your hibernate relational mappings looks like you are confused about how to use onetomany and manytoone properly.In category entity you are mapping category itself which is totally wrong.please go through hibernate tutorials first and then start implementing.

    – Alien
    Nov 16 '18 at 5:42













0












0








0








I'm trying to setup a Spring MVC Rest API using Angular in front end.
I'm strictly beginner for both technologies and it's a real challenge.



I'm going right to the point : I have an entity which refers to itself. For example, a category can have or not a parent category... For this I generated an Entity from an existing table...



I tried using fetch = fetchtype.eager to get the datas and it didn't provide the expected result.



Here is my Entity :



package com.company.app.model;

import java.io.Serializable;
import javax.persistence.*;

import com.fasterxml.jackson.annotation.JsonBackReference;
import com.fasterxml.jackson.annotation.JsonManagedReference;

import java.util.Date;
import java.util.List;

@Entity
@Table(name="categories")
@NamedQuery(name="Category.findAll", query="SELECT c FROM Category c")
public class Category implements Serializable
private static final long serialVersionUID = 1L;

@Id
@GeneratedValue
private Long id;

....

//bi-directional many-to-one association to Category
@ManyToOne
@JsonManagedReference
private Category category;

//bi-directional many-to-one association to Category
@OneToMany(mappedBy="category", fetch = FetchType.EAGER)
@JsonBackReference
private List<Category> categories;

//bi-directional many-to-one association to CategoryProduct
@OneToMany(mappedBy="category")
@JsonBackReference
private List<CategoryProduct> categoryProducts;


public Category()


// Getters, setters and other methods generated with JPA




My issue is that i would like to generate an Json which the "top level" categories which do not have parents and all their children categories. Technically it would look like this



 [ 

// Top level category
"id":1,
"name":"....",
"desc": "....."
"children" : [

"id":12,
"name":"....",
"desc": "....."
,

"id":14,
"name":"....",
"desc": "....."

...
]
"admin":
"id":1,
"createdAt":1541869810000,
"deletedAt":null,
"email":"david.vera@9online.fr",
"login":"admin",
"name":"Vera",
"password":"admin",
"surname":"David",
"updatedAt":1542150000000
,

]


In my Controller I have a method for listing the categories and it works as expected.



@GetMapping(path="/categories", produces= "application/json")
public List<Category> getAllCategories(Model model)
return categoryRepository.findAll();



Thanks for your help










share|improve this question














I'm trying to setup a Spring MVC Rest API using Angular in front end.
I'm strictly beginner for both technologies and it's a real challenge.



I'm going right to the point : I have an entity which refers to itself. For example, a category can have or not a parent category... For this I generated an Entity from an existing table...



I tried using fetch = fetchtype.eager to get the datas and it didn't provide the expected result.



Here is my Entity :



package com.company.app.model;

import java.io.Serializable;
import javax.persistence.*;

import com.fasterxml.jackson.annotation.JsonBackReference;
import com.fasterxml.jackson.annotation.JsonManagedReference;

import java.util.Date;
import java.util.List;

@Entity
@Table(name="categories")
@NamedQuery(name="Category.findAll", query="SELECT c FROM Category c")
public class Category implements Serializable
private static final long serialVersionUID = 1L;

@Id
@GeneratedValue
private Long id;

....

//bi-directional many-to-one association to Category
@ManyToOne
@JsonManagedReference
private Category category;

//bi-directional many-to-one association to Category
@OneToMany(mappedBy="category", fetch = FetchType.EAGER)
@JsonBackReference
private List<Category> categories;

//bi-directional many-to-one association to CategoryProduct
@OneToMany(mappedBy="category")
@JsonBackReference
private List<CategoryProduct> categoryProducts;


public Category()


// Getters, setters and other methods generated with JPA




My issue is that i would like to generate an Json which the "top level" categories which do not have parents and all their children categories. Technically it would look like this



 [ 

// Top level category
"id":1,
"name":"....",
"desc": "....."
"children" : [

"id":12,
"name":"....",
"desc": "....."
,

"id":14,
"name":"....",
"desc": "....."

...
]
"admin":
"id":1,
"createdAt":1541869810000,
"deletedAt":null,
"email":"david.vera@9online.fr",
"login":"admin",
"name":"Vera",
"password":"admin",
"surname":"David",
"updatedAt":1542150000000
,

]


In my Controller I have a method for listing the categories and it works as expected.



@GetMapping(path="/categories", produces= "application/json")
public List<Category> getAllCategories(Model model)
return categoryRepository.findAll();



Thanks for your help







json rest spring-mvc






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 15 '18 at 17:19









davidveradavidvera

73116




73116












  • From your hibernate relational mappings looks like you are confused about how to use onetomany and manytoone properly.In category entity you are mapping category itself which is totally wrong.please go through hibernate tutorials first and then start implementing.

    – Alien
    Nov 16 '18 at 5:42

















  • From your hibernate relational mappings looks like you are confused about how to use onetomany and manytoone properly.In category entity you are mapping category itself which is totally wrong.please go through hibernate tutorials first and then start implementing.

    – Alien
    Nov 16 '18 at 5:42
















From your hibernate relational mappings looks like you are confused about how to use onetomany and manytoone properly.In category entity you are mapping category itself which is totally wrong.please go through hibernate tutorials first and then start implementing.

– Alien
Nov 16 '18 at 5:42





From your hibernate relational mappings looks like you are confused about how to use onetomany and manytoone properly.In category entity you are mapping category itself which is totally wrong.please go through hibernate tutorials first and then start implementing.

– Alien
Nov 16 '18 at 5:42












0






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',
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%2f53324794%2fjson-containing-categories-and-subcategories-with-spring-mvc-rest-api%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















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%2f53324794%2fjson-containing-categories-and-subcategories-with-spring-mvc-rest-api%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







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3