Spring Projects Issues
Spring Projects Issues
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented The resulting list of values \[null, 1, 2\] seems odd but it does reflect the actual URL. The behavior is discussed under #18113 and is intentional and...
**[Cèsar Ordiñana](https://jira.spring.io/secure/ViewProfile.jspa?name=cordin)** commented We've found it's not only the case of appending values in the URL, but also when you use it in a form. With the previous example, we...
**[Juan Carlos García del Canto](https://jira.spring.io/secure/ViewProfile.jspa?name=jcgarcia)** commented Seems like the problem described by Cèsar appears when the method contains a parameter annotated with `@RequestParam` or `@PathVariable`. The [MvcUriComponentsBuilder](https://github.com/spring-projects/spring-framework/blob/master/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/annotation/MvcUriComponentsBuilder.java) obtains a list...
**[Kevin Binswanger](https://jira.spring.io/secure/ViewProfile.jspa?name=anusien)** commented Related to #10965
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented I will comment here on the proposed PR in order to add broader context about the feature. In Spring MVC the it works regardless of how model...
**[alephx](https://jira.spring.io/secure/[email protected])** commented Changing in Repository from ```java @Procedure(procedureName = "abc") String proc(@Param("p1") String p1); ``` to ```java @Procedure(procedureName = "abc") String proc(String p1); ``` solves problem (forces hibernate to not...
**[Igor Milina](https://jira.spring.io/secure/ViewProfile.jspa?name=igormi)** commented This is causing us a problem as well, and I have confirmed that invalid output parameter name is causing call to fail. Bug is present only when...
**[Kyle Anderson](https://jira.spring.io/secure/ViewProfile.jspa?name=kanderson)** commented I ran into this issue too. The work around suggested by `@alephx` worked for me. Many thanks for that. I hope to see this issue resolved
**[Igor Milina](https://jira.spring.io/secure/ViewProfile.jspa?name=igormi)** commented The workaround of using positional parameters is fragile, to say the least. Reordering parameters on java method or on the database procedure will cause code to fail....
**[Andrew Spencer](https://jira.spring.io/secure/[email protected])** commented A little addition to the workaround from [alephx](https://jira.spring.io/secure/[email protected]), if your procedure has an output variable then you need to remove `outputParameterName` parameter on `@Procedure` as well as...