| 1234567891011121314151617181920212223242526 |
- package jnpf.message.config;
- import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
- import org.springframework.boot.autoconfigure.condition.ConditionalOnNotWarDeployment;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.web.socket.server.standard.ServerEndpointExporter;
- @Configuration
- @ComponentScan
- @EnableAutoConfiguration
- public class WebsocketConfig {
- /**
- * 支持websocket
- * 如果不使用内置tomcat,则无需配置
- *
- * @return
- */
- @Bean
- @ConditionalOnNotWarDeployment
- public ServerEndpointExporter serverEndpointExporter() {
- return new ServerEndpointExporter();
- }
- }
|