dispatcher-servlet2.xml

<websocket:mapping handler="hsHandler" path="/hs-ws"/>

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="<http://www.springframework.org/schema/beans>"
   xmlns:websocket="<http://www.springframework.org/schema/websocket>"
   xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>"
   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.xsd>">
   <!-- WebSocket 등록 -->
   <bean id="hsHandler" class="com.histudy.websocket.HiStudyHandler"></bean>
   <websocket:handlers>
      <websocket:mapping handler="hsHandler" path="/hs-ws" />
   </websocket:handlers>
</beans>