45 lines
1.9 KiB
XML
45 lines
1.9 KiB
XML
<?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:context="http://www.springframework.org/schema/context"
|
|
xmlns:mvc="http://www.springframework.org/schema/mvc"
|
|
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/context
|
|
http://www.springframework.org/schema/context/spring-context-4.1.xsd
|
|
http://www.springframework.org/schema/mvc
|
|
http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
|
|
http://www.springframework.org/schema/websocket
|
|
http://www.springframework.org/schema/websocket/spring-websocket.xsd">
|
|
|
|
<!-- 开启注解包扫描-->
|
|
<context:component-scan base-package="com.heibaiying.*"/>
|
|
|
|
<!--使用默认的Servlet来响应静态文件 -->
|
|
<mvc:default-servlet-handler/>
|
|
|
|
<!-- 开启注解驱动 -->
|
|
<mvc:annotation-driven/>
|
|
|
|
<!-- 配置视图解析器 -->
|
|
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
|
|
id="internalResourceViewResolver">
|
|
<!-- 前缀 -->
|
|
<property name="prefix" value="/WEB-INF/jsp/"/>
|
|
<!-- 后缀 -->
|
|
<property name="suffix" value=".jsp"/>
|
|
</bean>
|
|
|
|
<!--配置webSocket-->
|
|
<bean id="customHandler" class="com.heibaiying.websocket.CustomHandler"/>
|
|
<websocket:handlers>
|
|
<!--指定webSocket 地址-->
|
|
<websocket:mapping path="/socket" handler="customHandler"/>
|
|
<!--webSocket握手-->
|
|
<websocket:handshake-interceptors>
|
|
<bean class="com.heibaiying.websocket.CustomHandshakeInterceptor"/>
|
|
</websocket:handshake-interceptors>
|
|
</websocket:handlers>
|
|
|
|
</beans> |