You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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:websocket="http://www.springframework.org/schema/websocket"
- xmlns:aop="http://www.springframework.org/schema/aop"
- 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.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
- http://www.springframework.org/schema/websocket
- http://www.springframework.org/schema/websocket/spring-websocket.xsd">
-
- <aop:aspectj-autoproxy/>
- <context:component-scan base-package="com.educoder.bridge.controller"/>
- <context:component-scan base-package="com.educoder.bridge.service"/>
- <context:component-scan base-package="com.educoder.bridge.handler"/>
-
- <!-- freemaker配置 -->
- <bean id="freemarkerConfig"
- class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
- <property name="templateLoaderPath" value="/WEB-INF/pages/" />
- <property name="freemarkerSettings">
- <props>
- <prop key="template_update_delay">0</prop>
- <prop key="default_encoding">UTF-8</prop>
- <prop key="number_format">0.##########</prop>
- <prop key="datetime_format">yyyy-MM-dd HH:mm:ss</prop>
- <prop key="classic_compatible">true</prop>
- <prop key="template_exception_handler">ignore</prop>
- </props>
- </property>
- </bean>
-
- <!--注册消息处理器,指定WebsshHandler处理消息,并将/ws映射到其中-->
- <websocket:handlers allowed-origins="*">
- <websocket:mapping path="/ws" handler="websshHandler"/>
- </websocket:handlers>
-
- <bean id="websshHandler" class="com.educoder.bridge.handler.WebsshHandler"/>
-
- </beans>
|