您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關SpringBoot中無法加載webSocket 資源如何解決,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
1. 項目集成WebSocket,且打包發布tomcat時出現websocket is already in CLOSING or CLOSE state這樣的問題,建議參考“解決方法二”,但是“解決方法一”請要了解查看 ,因為解決方法二是在一的基礎上進行更正
2. 如果出現javax.websocket.server.ServerContainer not available這樣的錯誤,請參考“解決方法一”中步驟3
步驟1:在BootApplication中修改:
public static void main(String[] args) { SpringApplication springApplication = new SpringApplication(BootApplication.class); springApplication.addListeners(new ApplicationPidFileWriter()); ConfigurableApplicationContext applicationContext = springApplication.run(args); WebSocketServer.setApplicationContext(applicationContext);
注:這里的WebSocketServer是指你自定義的websocket接受消息的服務類
步驟2:修改WebSocketServer
private static ManageUserMapper manageUserMapper; public static void setApplicationContext(ConfigurableApplicationContext applicationContext) { WebSocketServer.manageUserMapper = applicationContext.getBean(ManageUserMapper.class); }
步驟3: 修改pom.xml
由于我們在開發過程中,如果按照以上步驟1、2進行修改,一般不會出現問題,
但是如果我們打包發布tomcat,就會出現:javax.websocket.server.ServerContainer not available這樣的錯誤,步驟3為常規解決一下問題方式
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <!-- 去除內嵌tomcat --> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency>
需要去除web-starter的tomcat,因為如果不去除會導致沖突,
如果出現這種問題,你還需要在websocketConfig中做如下修改:(websocket為自定義配置類)
/** * 服務器節點 * * 如果使用獨立的servlet容器,而不是直接使用springboot的內置容器,就不要注入ServerEndpointExporter,因為它將由容器自己提供和管理 * @return */ @Bean @Profile("dev") public ServerEndpointExporter serverEndpointExporter() { return new ServerEndpointExporter(); }
在application.properties做如下配置
##prod:生產環境 dev:開發環境(WINDOWS) spring.profiles.active=dev
這里加入了@Profile("dev") 這個注解。意思是在開發的過程中去調用
.記住如果開發過程中,記得一定要把pom.xml中的去除tomcat那句話給注釋掉,上線才需要去除
問題反思:(為什么不建議這么解決問題)
這種方式確實可以常規解決websocket打包tomcat不報錯問題,同時也解決了在資源無法加載的問題,但是這樣卻十分的麻煩,理由如下:
1. 繁瑣:生產環境和開發環境要一直切換是否注釋tomcat
2. 局限性大:我們在BootApplication中添加了websocketserver去訪問資源的語句,但是其他地方難道沒有需要調用的嗎,如果有,難道像這樣一直累計添加下去,每個server設置一下
核心思想是資源無法加載的問題,如果你有寫線程,且線程你也調用了數據庫資源,那么解決方法是一致,編寫一個公用的工具類解決
步驟1:新建一個工具類,getbeanTool
此工具類為之后加載資源的工具類,公用
@Component public class GetBeanTool implements ApplicationContextAware{ private static ApplicationContext applicationContext = null; @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { GetBeanTool.applicationContext = applicationContext; } public static Object getBeanByName(String beanName) { if (applicationContext == null){ return null; } return applicationContext.getBean(beanName); } public static <T> T getBean(Class<T> type) { return applicationContext.getBean(type); } }
步驟2:在線程、websocket等server中,加載資源
以WebSocketServer作為參考,如下修改:
private ManageUserMapper manageUserMapper; public WebSocketServer() { this.manageUserMapper=GetBeanTool.getBean(ManageUserMapper.class); }
這么做你就不用在BootApplication中添加語句,來讓你的server去調用資源了,一步到位,大家都能用,需要的時候直接通過getbeanTool去請求就行了
步驟3:解決tomcat開發環境,生產環境pom.xml中注釋和打開內置tomcat的問題
這里需要修改BootApplication,如下修改:
@SpringBootApplication @Configuration public class BootApplication extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure( SpringApplicationBuilder application) { return application.sources(BootApplication.class); } public static void main(String[] args) { SpringApplication.run(BootApplication.class, args); } }
可以看到這里我繼承了SpringBootServletInitializer ,同時重寫了configure方法。采用這種寫法,如論是開發還是測試,你都不用管是否需要注釋內置的tomcat了
關于SpringBoot中無法加載webSocket 資源如何解決就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。