Spring Projects Issues
Spring Projects Issues
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented Moved to Spring Data JPA since Spring Data JPA controls how the actual query gets created. Other modules (e.g. Spring Data MongoDB) follow the object graph/document representation...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented No support for flash attributes currently in WebFlux. You can add query params to the redirect URL `/foo?q=1"` and use URI vars to refer to model attributes...
**[Adrien Sanchez](https://jira.spring.io/secure/ViewProfile.jspa?name=asanchez)** commented Hi Rossen, thanks for your answer. If I understand correctly, we must go through query params to pass attributes in a redirection with Webflux? So after the...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Is it primarily about those attributes being in the model after the redirect? In other words are they mostly simple type attributes that can be appended to...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented In any case I am turning this into a feature request to support flash attributes.
**[Adrien Sanchez](https://jira.spring.io/secure/ViewProfile.jspa?name=asanchez)** commented Thanks for your help, I'll try those workarounds. But yes, this feature would be very appreciated to perform redirections with model attributes easily.
**[cafebaby](https://jira.spring.io/secure/ViewProfile.jspa?name=zhouzhou19950825)** commented If you want to redirect the value passed, you can annotate `@SessionAttributes({ "path", "user" })` on the class and use the Model model to store the value. Use...
**[Miroslav Hrúz](https://jira.spring.io/secure/ViewProfile.jspa?name=jinxx)** commented I've tried also POST multipart data for simple fields (e.g. String) in Spring 4.x and 5.0.1 Web and WebFlux and it worked also for them except in...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Sorry for the slow response. In the Servlet API, a `request.getParameter` comes from a query parameter or a value pair from the body of a form POST....
**[Zhiyuan Zheng](https://jira.spring.io/secure/ViewProfile.jspa?name=zhzy0077)** commented Thanks for the fantastic framework. When I was migrating my services to Webflux, I am facing some difficult questions. Our frontend uses the following entity to request...