Issue: SPR-12962
This commit is contained in:
Rossen Stoyanchev
2015-05-04 09:51:31 -04:00
parent efce40c391
commit 9637b12f89
2 changed files with 3 additions and 1 deletions

View File

@@ -690,6 +690,8 @@ public class MvcUriComponentsBuilder {
}
}
public MethodArgumentBuilder arg(int index, Object value) {
this.argumentValues[index] = value;
return this;

View File

@@ -1091,7 +1091,7 @@ The Spring Framework provides support for using STOMP over WebSocket through
the +spring-messaging+ and +spring-websocket+ modules. It's easy to enable it.
Here is an example of configuring a STOMP WebSocket endpoint with SockJS fallback
options. The endpoint is available for clients to connect to a URL path `/app/portfolio`:
options. The endpoint is available for clients to connect to a URL path `/portfolio`:
[source,java,indent=0]
[subs="verbatim,quotes"]