Last active
August 29, 2019 00:58
-
-
Save bclozel/7605071 to your computer and use it in GitHub Desktop.
xml configuration for websocket / sockjs SPR-11063
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:message-broker | |
application-destination-prefix="/app" | |
user-destination-prefix="/personal" | |
> | |
<websocket:stomp-endpoint path="/foo,/bar"> | |
<websocket:handshake-handler ref="myHandler" /> | |
</websocket:stomp-endpoint> | |
<websocket:inbound-channel core-pool-size="100" keepalive-seconds="60" /> | |
<websocket:outbound-channel core-pool-size="100" keepalive-seconds="60" /> | |
<websocket:simple-broker prefix="/topic"> | |
<websocket:broker-channel | |
core-pool-size="1" | |
max-pool-size="1000" | |
keepalive-seconds="60" | |
queue-capacity="1000" | |
> | |
<websocket:channel-interceptor ref="fooChannelInterceptor"/> | |
<websocket:channel-interceptor ref="barChannelInterceptor"/> | |
</websocket:broker-channel> | |
</websocket:simple-broker> | |
</websocket:message-broker> | |
<bean id="myHandler" class="org.springframework.web.socket.server.config.xml.TestHandshakeHandler" /> | |
<bean id="fooChannelInterceptor" class="org.springframework.web.socket.server.config.xml.FooChannelInterceptor" /> | |
<bean id="barChannelInterceptor" class="org.springframework.web.socket.server.config.xml.BarChannelInterceptor" /> | |
</beans> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:message-broker order="2"> | |
<websocket:stomp-endpoint path="/foo"> | |
<websocket:handshake-handler ref="myHandler" /> | |
<websocket:sockjs /> | |
</websocket:stomp-endpoint> | |
<websocket:stomp-broker-relay | |
prefix="/topic,/queue" | |
relay-host="relayhost" | |
relay-port="1234" | |
system-login="login" | |
system-passcode="pass" | |
system-heartbeat-send-interval="5000" | |
system-heartbeat-receive-interval="5000" | |
virtual-host="spring.io"/> | |
</websocket:message-broker> | |
<bean id="myHandler" class="org.springframework.web.socket.server.config.xml.TestWebSocketHandler" /> | |
</beans> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:message-broker application-destination-prefix="/app" user-destination-prefix="/personal"> | |
<websocket:stomp-endpoint path="/foo,/bar"> | |
<websocket:handshake-handler ref="myHandler" /> | |
</websocket:stomp-endpoint> | |
<websocket:stomp-endpoint path="/test,/sockjs"> | |
<websocket:handshake-handler ref="myHandler" /> | |
<websocket:sockjs /> | |
</websocket:stomp-endpoint> | |
<websocket:simple-broker prefix="/topic" /> | |
</websocket:message-broker> | |
<bean id="myHandler" class="org.springframework.web.socket.server.config.xml.TestHandshakeHandler" /> | |
</beans> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:handlers order="2"> | |
<websocket:mapping path="/foo" handler="fooHandler" /> | |
<websocket:mapping path="/test" handler="testHandler" /> | |
<websocket:handshake-handler ref="testHandshakeHandler" /> | |
<websocket:handshake-interceptors> | |
<bean class="org.springframework.web.socket.server.config.xml.FooTestInterceptor"/> | |
<ref bean="barTestInterceptor" /> | |
</websocket:handshake-interceptors> | |
</websocket:handlers> | |
<bean id="testHandler" class="org.springframework.web.socket.server.config.xml.TestWebSocketHandler" /> | |
<bean id="fooHandler" class="org.springframework.web.socket.server.config.xml.FooWebSocketHandler" /> | |
<bean id="barTestInterceptor" class="org.springframework.web.socket.server.config.xml.BarTestInterceptor"/> | |
<bean id="testHandshakeHandler" class="org.springframework.web.socket.server.config.xml.TestHandshakeHandler" /> | |
</beans> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:handlers > | |
<websocket:mapping path="/test" handler="testHandler" /> | |
<websocket:sockjs task-scheduler="testTaskScheduler" | |
name="testSockJsService" | |
websocket-enabled="false" | |
session-cookie-needed="false" | |
stream-bytes-limit="2048" | |
disconnect-delay="256" | |
http-message-cache-size="1024" | |
heartbeat-time="20"> | |
<websocket:transport-handlers register-defaults="false"> | |
<bean class="org.springframework.web.socket.sockjs.transport.handler.XhrPollingTransportHandler"/> | |
<ref bean="xhrStreamingTransportHandler" /> | |
</websocket:transport-handlers> | |
</websocket:sockjs> | |
</websocket:handlers> | |
<bean id="testHandler" class="org.springframework.web.socket.server.config.xml.TestWebSocketHandler" /> | |
<bean id="xhrStreamingTransportHandler" class="org.springframework.web.socket.sockjs.transport.handler.XhrStreamingTransportHandler" /> | |
<bean id="testTaskScheduler" class="org.springframework.web.socket.server.config.xml.TestTaskScheduler" /> | |
</beans> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:handlers> | |
<websocket:mapping path="/test" handler="testHandler" /> | |
<websocket:mapping path="/foo/" handler="fooHandler" /> | |
<websocket:sockjs/> | |
</websocket:handlers> | |
<bean id="testHandler" class="org.springframework.web.socket.server.config.xml.TestWebSocketHandler" /> | |
<bean id="fooHandler" class="org.springframework.web.socket.server.config.xml.FooWebSocketHandler" /> | |
</beans> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
~ Copyright 2002-2013 the original author or authors. | |
~ | |
~ Licensed under the Apache License, Version 2.0 (the "License"); | |
~ you may not use this file except in compliance with the License. | |
~ You may obtain a copy of the License at | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ | |
~ Unless required by applicable law or agreed to in writing, software | |
~ distributed under the License is distributed on an "AS IS" BASIS, | |
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
~ See the License for the specific language governing permissions and | |
~ limitations under the License. | |
--> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:websocket="http://www.springframework.org/schema/websocket" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd"> | |
<websocket:handlers> | |
<websocket:mapping path="/foo,/bar" handler="fooHandler" /> | |
</websocket:handlers> | |
<websocket:handlers> | |
<websocket:mapping path="/test" handler="testHandler" /> | |
</websocket:handlers> | |
<bean id="testHandler" class="org.springframework.web.socket.server.config.xml.TestWebSocketHandler" /> | |
<bean id="fooHandler" class="org.springframework.web.socket.server.config.xml.FooWebSocketHandler" /> | |
</beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment