Simplify determination of SockJS path

The SockJS path is now passed to the SockJsService handleRequest method
thus removing the need to guess it.

Issue: SPR-11058
This commit is contained in:
Rossen Stoyanchev
2013-11-07 22:26:00 -05:00
parent 6a18daea33
commit 2a6c1f75e7
8 changed files with 46 additions and 242 deletions

View File

@@ -147,7 +147,7 @@ public abstract class AbstractStompEndpointRegistration<M> implements StompEndpo
}
protected SockJsService getSockJsService() {
return super.getSockJsService(paths);
return super.getSockJsService();
}
}