dispatcher-servlet2.xml
<websocket:mapping handler="hsHandler" path="/hs-ws"/>
- 실시간 통신 처리 (채팅, 알림 등)
/hs-ws 경로로 WebSocket 연결
<?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>