How to convert non HAL format to HAL format for nested entityHow to convert String to Long in Kotlin?Enable HAL serialization in Spring Boot for custom controller methodHow to convert List to Map in Kotlin?How to convert a kotlin source file to a java source fileSpring data-rest incorrect resource hrefHow to get a response in HAL-Format with Spring-HateoasCan not get HAL format in Spring Boot MVC unit testHow can I force @AutoConfigureJsonTesters to use HAL format from spring-hateoas?Spring, hal browser and entities relationshipHow to get my resource data from a HAL response?
Is there an efficient way to replace text matching the entire content of one file with the entire content of another file?
Does revoking a certificate result in revocation of its key?
Logarithm of dependent variable is uniformly distributed. How to calculate a confidence interval for the mean?
Is it possible to play as a necromancer skeleton?
How did early x86 BIOS programmers manage to program full blown TUIs given very few bytes of ROM/EPROM?
How does an ARM MCU run faster than the external crystal?
Command to Search for Filenames Exceeding 143 Characters?
analysis of BJT PNP type - why they can use voltage divider?
I think I may have violated academic integrity last year - what should I do?
Were pens caps holes designed to prevent death by suffocation if swallowed?
Flying domestically in the US, is my State Issued ID all I need to get past security?
Forward and backward integration -- cause of errors
Why does the 'metric Lagrangian' approach appear to fail in classical mechanics?
Does this degree 12 genus 1 curve have only one point over infinitely many finite fields?
Full backup on database creation
Why is this Simple Puzzle impossible to solve?
Binary Search in C++17
Infinite Sequence based on Simple Rule
Why are C64 games inconsistent with which joystick port they use?
Why colon to denote that a value belongs to a type?
Does linking adjectives allow you to talk about multiple variations of something?
Tic-tac-toe for the terminal, written in C
What does the view outside my ship traveling at light speed look like?
Seed ship, unsexed person, cover has golden person attached to ship by umbilical cord
How to convert non HAL format to HAL format for nested entity
How to convert String to Long in Kotlin?Enable HAL serialization in Spring Boot for custom controller methodHow to convert List to Map in Kotlin?How to convert a kotlin source file to a java source fileSpring data-rest incorrect resource hrefHow to get a response in HAL-Format with Spring-HateoasCan not get HAL format in Spring Boot MVC unit testHow can I force @AutoConfigureJsonTesters to use HAL format from spring-hateoas?Spring, hal browser and entities relationshipHow to get my resource data from a HAL response?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
There is a model class "Student" which extends ResourceSupport and contains attributes name(string), age(int), marks(int) and class_leader(Student). I have defined two views , basicview (applied for name and age) and fullview (extends basic view and applied for marks and class_leader). When I call an api to get all students details with full view, I am expecting a full view for each student with basic view for the class leader of that student. To add that facility , I have incorporated JSONSerializer for class_leader attribute and its working as expected. But the only problem which I face now is for the class_leader the Link is not coming in HAL format. If I am not using serializer fullview with proper HAL format is getting displayed.
Have tried annotating controller class with @EnableHypermediaSupport(type = [(EnableHypermediaSupport.HypermediaType.HAL)])
This is the serializer code which I am using.
class StudentSerializer: JsonSerializer<Any>()
@Throws(IOException::class, JsonGenerationException::class)
override fun serialize(value: Any?, jgen: JsonGenerator?, provider:
SerializerProvider?)
var objectMapper = jacksonObjectMapper()
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL)
//objectMapper.registerModule( Jackson2HalModule())
objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value)
Expected Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"_links":
"self":
"href": "http://localhost:9090/class/students/2"
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
Actual Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"links": [
"rel": "self",
"href":"http://localhost:9090/class/students/2"
]
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
spring-boot kotlin spring-hateoas
add a comment |
There is a model class "Student" which extends ResourceSupport and contains attributes name(string), age(int), marks(int) and class_leader(Student). I have defined two views , basicview (applied for name and age) and fullview (extends basic view and applied for marks and class_leader). When I call an api to get all students details with full view, I am expecting a full view for each student with basic view for the class leader of that student. To add that facility , I have incorporated JSONSerializer for class_leader attribute and its working as expected. But the only problem which I face now is for the class_leader the Link is not coming in HAL format. If I am not using serializer fullview with proper HAL format is getting displayed.
Have tried annotating controller class with @EnableHypermediaSupport(type = [(EnableHypermediaSupport.HypermediaType.HAL)])
This is the serializer code which I am using.
class StudentSerializer: JsonSerializer<Any>()
@Throws(IOException::class, JsonGenerationException::class)
override fun serialize(value: Any?, jgen: JsonGenerator?, provider:
SerializerProvider?)
var objectMapper = jacksonObjectMapper()
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL)
//objectMapper.registerModule( Jackson2HalModule())
objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value)
Expected Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"_links":
"self":
"href": "http://localhost:9090/class/students/2"
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
Actual Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"links": [
"rel": "self",
"href":"http://localhost:9090/class/students/2"
]
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
spring-boot kotlin spring-hateoas
Got it working : ` override fun serialize(value: Any?, jgen: JsonGenerator?, provider: SerializerProvider?) var objectMapper = jacksonObjectMapper() objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL) objectMapper.registerModule( Jackson2HalModule()) objectMapper.setHandlerInstantiator( Jackson2HalModule.HalHandlerInstantiator(AnnotationRelProvider(), null, null, HalConfiguration())) objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value) `
– Deepna
Mar 26 at 7:10
add a comment |
There is a model class "Student" which extends ResourceSupport and contains attributes name(string), age(int), marks(int) and class_leader(Student). I have defined two views , basicview (applied for name and age) and fullview (extends basic view and applied for marks and class_leader). When I call an api to get all students details with full view, I am expecting a full view for each student with basic view for the class leader of that student. To add that facility , I have incorporated JSONSerializer for class_leader attribute and its working as expected. But the only problem which I face now is for the class_leader the Link is not coming in HAL format. If I am not using serializer fullview with proper HAL format is getting displayed.
Have tried annotating controller class with @EnableHypermediaSupport(type = [(EnableHypermediaSupport.HypermediaType.HAL)])
This is the serializer code which I am using.
class StudentSerializer: JsonSerializer<Any>()
@Throws(IOException::class, JsonGenerationException::class)
override fun serialize(value: Any?, jgen: JsonGenerator?, provider:
SerializerProvider?)
var objectMapper = jacksonObjectMapper()
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL)
//objectMapper.registerModule( Jackson2HalModule())
objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value)
Expected Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"_links":
"self":
"href": "http://localhost:9090/class/students/2"
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
Actual Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"links": [
"rel": "self",
"href":"http://localhost:9090/class/students/2"
]
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
spring-boot kotlin spring-hateoas
There is a model class "Student" which extends ResourceSupport and contains attributes name(string), age(int), marks(int) and class_leader(Student). I have defined two views , basicview (applied for name and age) and fullview (extends basic view and applied for marks and class_leader). When I call an api to get all students details with full view, I am expecting a full view for each student with basic view for the class leader of that student. To add that facility , I have incorporated JSONSerializer for class_leader attribute and its working as expected. But the only problem which I face now is for the class_leader the Link is not coming in HAL format. If I am not using serializer fullview with proper HAL format is getting displayed.
Have tried annotating controller class with @EnableHypermediaSupport(type = [(EnableHypermediaSupport.HypermediaType.HAL)])
This is the serializer code which I am using.
class StudentSerializer: JsonSerializer<Any>()
@Throws(IOException::class, JsonGenerationException::class)
override fun serialize(value: Any?, jgen: JsonGenerator?, provider:
SerializerProvider?)
var objectMapper = jacksonObjectMapper()
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL)
//objectMapper.registerModule( Jackson2HalModule())
objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value)
Expected Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"_links":
"self":
"href": "http://localhost:9090/class/students/2"
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
Actual Result:
"_embedded":
"studentList": [
"roll_no":1,
"name": "student1",
"age": 10,
"marks":47,
"class_leader":
"roll_no":2,
"name": "student2",
"links": [
"rel": "self",
"href":"http://localhost:9090/class/students/2"
]
,
"_links":
"studentdetail":
"href": "http://localhost:9090/class/students/1"
,
...
]
,
"_links":
"self":
"href": "http://localhost:9090/class/students/"
spring-boot kotlin spring-hateoas
spring-boot kotlin spring-hateoas
asked Mar 24 at 6:53
DeepnaDeepna
301
301
Got it working : ` override fun serialize(value: Any?, jgen: JsonGenerator?, provider: SerializerProvider?) var objectMapper = jacksonObjectMapper() objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL) objectMapper.registerModule( Jackson2HalModule()) objectMapper.setHandlerInstantiator( Jackson2HalModule.HalHandlerInstantiator(AnnotationRelProvider(), null, null, HalConfiguration())) objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value) `
– Deepna
Mar 26 at 7:10
add a comment |
Got it working : ` override fun serialize(value: Any?, jgen: JsonGenerator?, provider: SerializerProvider?) var objectMapper = jacksonObjectMapper() objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL) objectMapper.registerModule( Jackson2HalModule()) objectMapper.setHandlerInstantiator( Jackson2HalModule.HalHandlerInstantiator(AnnotationRelProvider(), null, null, HalConfiguration())) objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value) `
– Deepna
Mar 26 at 7:10
Got it working : ` override fun serialize(value: Any?, jgen: JsonGenerator?, provider: SerializerProvider?) var objectMapper = jacksonObjectMapper() objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL) objectMapper.registerModule( Jackson2HalModule()) objectMapper.setHandlerInstantiator( Jackson2HalModule.HalHandlerInstantiator(AnnotationRelProvider(), null, null, HalConfiguration())) objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value) `
– Deepna
Mar 26 at 7:10
Got it working : ` override fun serialize(value: Any?, jgen: JsonGenerator?, provider: SerializerProvider?) var objectMapper = jacksonObjectMapper() objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL) objectMapper.registerModule( Jackson2HalModule()) objectMapper.setHandlerInstantiator( Jackson2HalModule.HalHandlerInstantiator(AnnotationRelProvider(), null, null, HalConfiguration())) objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value) `
– Deepna
Mar 26 at 7:10
add a comment |
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
);
);
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%2f55321410%2fhow-to-convert-non-hal-format-to-hal-format-for-nested-entity%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
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%2f55321410%2fhow-to-convert-non-hal-format-to-hal-format-for-nested-entity%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
Got it working : ` override fun serialize(value: Any?, jgen: JsonGenerator?, provider: SerializerProvider?) var objectMapper = jacksonObjectMapper() objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL) objectMapper.registerModule( Jackson2HalModule()) objectMapper.setHandlerInstantiator( Jackson2HalModule.HalHandlerInstantiator(AnnotationRelProvider(), null, null, HalConfiguration())) objectMapper.writerWithView(Views.BaiscView :: class.java).writeValue(jgen, value) `
– Deepna
Mar 26 at 7:10