Spring Projects Issues

Results 1565 comments of Spring Projects Issues

**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented I am afraid it's not. While this hack certainly makes it work somehow I see a couple of downsides: - `ResourceProcessorHandlerMethodReturnValueHandler` now knows about `TargetAware` and thus...

**[Mathias D](https://jira.spring.io/secure/ViewProfile.jspa?name=mduesterhoeft)** commented Thanks for the feedback - I think I was not seeing the whole picture. It was worth a try and interesting to see how it works internally....

**[Petar Tahchiev](https://jira.spring.io/secure/ViewProfile.jspa?name=ptahchiev)** commented Guys, any update here? We have a lot of different projections and this hack means we must have 10-12 different `ResourceProcessor`-s with the same duplicated code inside....

**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented If it's literally the same code, isn't introducing a common interface and referring to that a reasonable solution?

**[Petar Tahchiev](https://jira.spring.io/secure/ViewProfile.jspa?name=ptahchiev)** commented Hi Olver, let me see if I follow this through. So let's say we have: ``` projection A -> renders JSON A projection B -> renders JSON...

**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented I still have a hard time Imagine this to work as you expect us to call a method `Resource process(Resource resource)` but all we have at this...

**[Casey Link](https://jira.spring.io/secure/ViewProfile.jspa?name=caseylink)** commented Just ran into this bug when implementing a workaround for [DATACMNS-941](https://jira.spring.io/browse/DATACMNS-941). ```java @RepositoryRestController @RequestMapping("person-containers") @ExposesResourceFor(PersonContainer.class) @RequiredArgsConstructor(onConstructor = @__(@Autowired) ) public class PersonContainerController { private final PersonContainerService personContainerService;...

**[Casey Link](https://jira.spring.io/secure/ViewProfile.jspa?name=caseylink)** commented Ok I managed a workaround, but boy is it a doozy! To be clear, the goal is to: * Use `@QuerydslPredicate` in a controller's request handler to...

**[Tyler Carrington](https://jira.spring.io/secure/ViewProfile.jspa?name=tylercarrington)** commented I ran into trouble mixing `@RestController` with `@RepositoryRestController` so I created a new workaround that takes the parameters and creates a predicate from it. This allows us...

**[SayakMukhopadhyay](https://jira.spring.io/secure/ViewProfile.jspa?name=sayakmukhopadhyay)** commented This issue is still present in Spring 3.1.5.RELEASE. Any information regarding a tentative date of a fix?