Using PagedResourcesAssembler with List content
I'm using Spring Boot 2, Springa Data REST, Spring HATEOAS.
I've a particular @RepositoryRestController
in which I need to return a paged result of Strings. So I've not objects but a list of String
.
This is how my controller looks like:
@RepositoryRestController
@PreAuthorize("isAuthenticated()")
public class FrameController {
@PostMapping(path = "/frames/{property}/groupBy")
public ResponseEntity<?> search(@PathVariable("property") String property, @RequestBody(required = true) List<Filter> filters, Pageable pageable, Locale locale,
PersistentEntityResourceAssembler resourceAssembler) {
Page<String> pageResult = frameService.groupByProperty(property, filters, pageable);
return ResponseEntity.ok(pagedResourcesAssembler.toResource(pageResult));
}
The response looks like this:
{
"_embedded": {
"strings": [
{
"content": "BA0001"
},
{
"content": "BA0002"
},
{
"content": "BA0003"
},
{
"content": "BA0004"
},
{
"content": "BA0005"
},
{
"content": "BA0006"
},
{
"content": "BA0007"
}
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
The response is quite ugly because each string looks like an object.
I would like to have a response like this:
{
"_embedded": {
"strings": [
"BA0001",
"BA0002",
"BA0003",
"BA0004",
"BA0005",
"BA0006",
"BA0007"
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
I tried to create my own ResourceAssembler
but unfortunately PagedResourcesAssembler
applies the resourceAssembler to each item (String) and not to the entire collection.
Is there a way to reach my goal using Spring stuff?
java spring spring-hateoas
add a comment |
I'm using Spring Boot 2, Springa Data REST, Spring HATEOAS.
I've a particular @RepositoryRestController
in which I need to return a paged result of Strings. So I've not objects but a list of String
.
This is how my controller looks like:
@RepositoryRestController
@PreAuthorize("isAuthenticated()")
public class FrameController {
@PostMapping(path = "/frames/{property}/groupBy")
public ResponseEntity<?> search(@PathVariable("property") String property, @RequestBody(required = true) List<Filter> filters, Pageable pageable, Locale locale,
PersistentEntityResourceAssembler resourceAssembler) {
Page<String> pageResult = frameService.groupByProperty(property, filters, pageable);
return ResponseEntity.ok(pagedResourcesAssembler.toResource(pageResult));
}
The response looks like this:
{
"_embedded": {
"strings": [
{
"content": "BA0001"
},
{
"content": "BA0002"
},
{
"content": "BA0003"
},
{
"content": "BA0004"
},
{
"content": "BA0005"
},
{
"content": "BA0006"
},
{
"content": "BA0007"
}
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
The response is quite ugly because each string looks like an object.
I would like to have a response like this:
{
"_embedded": {
"strings": [
"BA0001",
"BA0002",
"BA0003",
"BA0004",
"BA0005",
"BA0006",
"BA0007"
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
I tried to create my own ResourceAssembler
but unfortunately PagedResourcesAssembler
applies the resourceAssembler to each item (String) and not to the entire collection.
Is there a way to reach my goal using Spring stuff?
java spring spring-hateoas
Why would you do that? Embedded Resources are Resources and Resources are represented by JSON Objects. Changing that would make the result not HAL. Maybe these aren't resources after all, but just an array-valued attribute?
– Jens Schauder
Dec 10 '18 at 6:51
Exaclty @JensSchauder there are just a paged result of strings.
– drenda
Dec 10 '18 at 8:09
So don't make them embedded resources, but just attributes of your resource.
– Jens Schauder
Dec 10 '18 at 8:15
@JensSchauder Do you have an example of that? Thanks
– drenda
Dec 10 '18 at 9:16
add a comment |
I'm using Spring Boot 2, Springa Data REST, Spring HATEOAS.
I've a particular @RepositoryRestController
in which I need to return a paged result of Strings. So I've not objects but a list of String
.
This is how my controller looks like:
@RepositoryRestController
@PreAuthorize("isAuthenticated()")
public class FrameController {
@PostMapping(path = "/frames/{property}/groupBy")
public ResponseEntity<?> search(@PathVariable("property") String property, @RequestBody(required = true) List<Filter> filters, Pageable pageable, Locale locale,
PersistentEntityResourceAssembler resourceAssembler) {
Page<String> pageResult = frameService.groupByProperty(property, filters, pageable);
return ResponseEntity.ok(pagedResourcesAssembler.toResource(pageResult));
}
The response looks like this:
{
"_embedded": {
"strings": [
{
"content": "BA0001"
},
{
"content": "BA0002"
},
{
"content": "BA0003"
},
{
"content": "BA0004"
},
{
"content": "BA0005"
},
{
"content": "BA0006"
},
{
"content": "BA0007"
}
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
The response is quite ugly because each string looks like an object.
I would like to have a response like this:
{
"_embedded": {
"strings": [
"BA0001",
"BA0002",
"BA0003",
"BA0004",
"BA0005",
"BA0006",
"BA0007"
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
I tried to create my own ResourceAssembler
but unfortunately PagedResourcesAssembler
applies the resourceAssembler to each item (String) and not to the entire collection.
Is there a way to reach my goal using Spring stuff?
java spring spring-hateoas
I'm using Spring Boot 2, Springa Data REST, Spring HATEOAS.
I've a particular @RepositoryRestController
in which I need to return a paged result of Strings. So I've not objects but a list of String
.
This is how my controller looks like:
@RepositoryRestController
@PreAuthorize("isAuthenticated()")
public class FrameController {
@PostMapping(path = "/frames/{property}/groupBy")
public ResponseEntity<?> search(@PathVariable("property") String property, @RequestBody(required = true) List<Filter> filters, Pageable pageable, Locale locale,
PersistentEntityResourceAssembler resourceAssembler) {
Page<String> pageResult = frameService.groupByProperty(property, filters, pageable);
return ResponseEntity.ok(pagedResourcesAssembler.toResource(pageResult));
}
The response looks like this:
{
"_embedded": {
"strings": [
{
"content": "BA0001"
},
{
"content": "BA0002"
},
{
"content": "BA0003"
},
{
"content": "BA0004"
},
{
"content": "BA0005"
},
{
"content": "BA0006"
},
{
"content": "BA0007"
}
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
The response is quite ugly because each string looks like an object.
I would like to have a response like this:
{
"_embedded": {
"strings": [
"BA0001",
"BA0002",
"BA0003",
"BA0004",
"BA0005",
"BA0006",
"BA0007"
]
},
"_links": {
"first": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"self": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=0&size=20"
},
"next": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=1&size=20"
},
"last": {
"href": "http://localhost:8082/api/v1/frames/model/groupBy?page=585&size=20"
}
},
"page": {
"size": 20,
"totalElements": 11717,
"totalPages": 586,
"number": 0
}
}
I tried to create my own ResourceAssembler
but unfortunately PagedResourcesAssembler
applies the resourceAssembler to each item (String) and not to the entire collection.
Is there a way to reach my goal using Spring stuff?
java spring spring-hateoas
java spring spring-hateoas
asked Nov 28 '18 at 14:22
drendadrenda
1,63922558
1,63922558
Why would you do that? Embedded Resources are Resources and Resources are represented by JSON Objects. Changing that would make the result not HAL. Maybe these aren't resources after all, but just an array-valued attribute?
– Jens Schauder
Dec 10 '18 at 6:51
Exaclty @JensSchauder there are just a paged result of strings.
– drenda
Dec 10 '18 at 8:09
So don't make them embedded resources, but just attributes of your resource.
– Jens Schauder
Dec 10 '18 at 8:15
@JensSchauder Do you have an example of that? Thanks
– drenda
Dec 10 '18 at 9:16
add a comment |
Why would you do that? Embedded Resources are Resources and Resources are represented by JSON Objects. Changing that would make the result not HAL. Maybe these aren't resources after all, but just an array-valued attribute?
– Jens Schauder
Dec 10 '18 at 6:51
Exaclty @JensSchauder there are just a paged result of strings.
– drenda
Dec 10 '18 at 8:09
So don't make them embedded resources, but just attributes of your resource.
– Jens Schauder
Dec 10 '18 at 8:15
@JensSchauder Do you have an example of that? Thanks
– drenda
Dec 10 '18 at 9:16
Why would you do that? Embedded Resources are Resources and Resources are represented by JSON Objects. Changing that would make the result not HAL. Maybe these aren't resources after all, but just an array-valued attribute?
– Jens Schauder
Dec 10 '18 at 6:51
Why would you do that? Embedded Resources are Resources and Resources are represented by JSON Objects. Changing that would make the result not HAL. Maybe these aren't resources after all, but just an array-valued attribute?
– Jens Schauder
Dec 10 '18 at 6:51
Exaclty @JensSchauder there are just a paged result of strings.
– drenda
Dec 10 '18 at 8:09
Exaclty @JensSchauder there are just a paged result of strings.
– drenda
Dec 10 '18 at 8:09
So don't make them embedded resources, but just attributes of your resource.
– Jens Schauder
Dec 10 '18 at 8:15
So don't make them embedded resources, but just attributes of your resource.
– Jens Schauder
Dec 10 '18 at 8:15
@JensSchauder Do you have an example of that? Thanks
– drenda
Dec 10 '18 at 9:16
@JensSchauder Do you have an example of that? Thanks
– drenda
Dec 10 '18 at 9:16
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%2f53521602%2fusing-pagedresourcesassembler-with-liststring-content%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%2f53521602%2fusing-pagedresourcesassembler-with-liststring-content%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
Why would you do that? Embedded Resources are Resources and Resources are represented by JSON Objects. Changing that would make the result not HAL. Maybe these aren't resources after all, but just an array-valued attribute?
– Jens Schauder
Dec 10 '18 at 6:51
Exaclty @JensSchauder there are just a paged result of strings.
– drenda
Dec 10 '18 at 8:09
So don't make them embedded resources, but just attributes of your resource.
– Jens Schauder
Dec 10 '18 at 8:15
@JensSchauder Do you have an example of that? Thanks
– drenda
Dec 10 '18 at 9:16