Skip to content
Snippets Groups Projects
Commit d4fce181 authored by Paul-Christian Volkmer's avatar Paul-Christian Volkmer
Browse files

Changed web.xml due to Spring WebSocket removal

parent 793b4bc4
Branches
Tags
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<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/websocket http://www.springframework.org/schema/websocket/spring-websocket-4.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<websocket:handlers>
<websocket:mapping handler="echoHandler" path="/socket/echo"/>
</websocket:handlers>
<bean id="echoHandler" class="de.thm.arsnova.socket.EchoHandler" />
</beans>
......@@ -20,7 +20,6 @@
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/arsnova-servlet.xml
/WEB-INF/spring/spring-websocket.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment