Spring Projects Issues
Spring Projects Issues
**[Zhiyuan Zheng](https://jira.spring.io/secure/ViewProfile.jspa?name=zhzy0077)** commented When the form contains preserved word as key (e.g. "int", "interface"), it's difficult to create a form post controller.
**[Zhang Jie](https://jira.spring.io/secure/ViewProfile.jspa?name=nkjackzhang)** commented `@Zhiyuan` Zheng According Springframework reference: > Unlike the Servlet API "request paramater" concept that conflate query parameters, form data, and multiparts into one, in WebFlux each is...
**[Zhiyuan Zheng](https://jira.spring.io/secure/ViewProfile.jspa?name=zhzy0077)** commented `@Zhang` JIe Thanks for your reply. As I said earlier, I have a key named "interface", so it's not easy to mapping the request to a command...
**[Miroslav Hrúz](https://jira.spring.io/secure/ViewProfile.jspa?name=jinxx)** commented Sorry guys, I am looking at the answers and must interact :) I liked the `@RequestMapping` for both GET and POST because it was convenient and easy...
**[Miroslav Hrúz](https://jira.spring.io/secure/ViewProfile.jspa?name=jinxx)** commented Just for the record. Here is my workaround. [FormDataWorkaround.java](https://jira.spring.io/secure/attachment/25719/FormDataWorkaround.java)
**[Zhang Jie](https://jira.spring.io/secure/ViewProfile.jspa?name=nkjackzhang)** commented `@Zhiyuan` Zhen If your form field is "interface", and pojo field name is "interFace" ( certainly can not be "interface"), that is a invalid use case.You can...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented [Miroslav Hrúz](https://jira.spring.io/secure/ViewProfile.jspa?name=jinxx), first a couple of clarifications: 1. `@RequestMapping` does work for both GET and POST, but I presume you meant `@RequestParam` does not work for both....
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented > Just for the record. Here is my workaround. By the way, when the body cannot be read immediately, those `subscribe` methods in the [FormDataWorkaround](https://jira.spring.io/secure/attachment/25719/25719_FormDataWorkaround.java) may not...
**[Zhang Jie](https://jira.spring.io/secure/ViewProfile.jspa?name=nkjackzhang)** commented Hi, all, I have found that, if we want to use custom **`@FormAttribute`** or something else to customize x-www-form-urlencoded, we can write a custom **FormAttributeBeanInfoFactory** which is...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented After some further thought, I'm scheduling for a potential fix in 5.1. I plan to experiment with the idea for `@RequestParam`, when used on an `@RequestMapping` method,...