-
Notifications
You must be signed in to change notification settings - Fork 40.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring Data REST doesn't work as expected after upgrading 1.3.0.M3 from 1.3.0.M2 #3731
Comments
I'd be surprised if this had anything to do with Boot itself. It's more likely a side-effect of the move from Spring Data REST 2.4.0.M1 (Gosling M1) to Spring Data REST 2.4.0.RC1 (Gosling RC1). Hopefully, @olivergierke can provide some insight. |
…verter drop information on rendering on Spring 4.2 and Jackson 2.6. Related tickets: spring-projects/spring-boot#3731
(Subscribing. Same here) |
This seems to be caused by a tweak to improve the integration with Jackson 2.6 for collections but unfortunately has the side effect of the controller method's declared return type to be used to look up the serializer instead of the value actually returned. There's a ticket in Spring Framework's JIRA. I've created a test case in Spring HATEOAS to reproduce the error. It's a bit of a pity as we of course have test cases for the rendering, but all of them using an |
@cedricziel FYI, you don't need to comment to subscribe – there's a button in the Notifications section of the right-hand column (on the desktop layout). |
…verter drop information on rendering on Spring 4.2 and Jackson 2.6. Related tickets: spring-projects/spring-boot#3731
…verter drop information on rendering on Spring 4.2 and Jackson 2.6. Related tickets: spring-projects/spring-boot#3731
…r drop information on rendering on Spring 4.2 and Jackson 2.6. Related tickets: spring-projects/spring-boot#3731, SPR-13318.
After upgrading 1.3.0.M3 from 1.3.0.M2,
page
element doesn't exist and mapped entities'_embedded
doesn't exist.This is a sample reproducing the problem:
https://github.com/izeye/organizer
With 1.3.0.M2, when visiting
/links
, got the following:and when visiting
/links/1/tags
, got the following:But with 1.3.0.M3, when visiting
/links
, got the following:and when visiting
/links/1/tags
, got the following:The text was updated successfully, but these errors were encountered: