im
This commit is contained in:
31
im-api/src/main/java/cn/lili/ImApiApplication.java
Normal file
31
im-api/src/main/java/cn/lili/ImApiApplication.java
Normal file
@@ -0,0 +1,31 @@
|
||||
package cn.lili;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
||||
|
||||
|
||||
/**
|
||||
* @author liushuai
|
||||
*/
|
||||
@SpringBootApplication
|
||||
public class ImApiApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ImApiApplication.class, args);
|
||||
}
|
||||
|
||||
/**
|
||||
* 如果使用独立的servlet容器,
|
||||
* 而不是直接使用springboot的内置容器,
|
||||
* 就不要注入ServerEndpointExporter,
|
||||
* 因为它将由容器自己提供和管理
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@Bean
|
||||
public ServerEndpointExporter serverEndpointExporter() {
|
||||
return new ServerEndpointExporter();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user