websocket採用tomcat方式,IOC類對象沒法注入的解決方案

前言html

我採用的spring框架作的,主要用於IOC AOP ,spring以前採用的2.0版本。(2.0版本出錯!下面有解釋); 要實現websocket 實現後臺主動與JSP發送數據。

具體操做java

在websocket類中 註解添加以下:
import org.springframework.web.socket.server.standard.SpringConfigurator;
//註解規定了訪問的URL
@ServerEndpoint(value="/websocket",configurator = SpringConfigurator.class)
public class WebSocketServer {}

其中configurator = SpringConfigurator.class 這個表示讓spring能掃描到該類,不加的話tomcat會自動啓動該websocket類!

加上那句註解以後呢,就能夠在websocket類中實現屬性注入了。能夠引入別的類了,以及使用被的類的方法了。

可是,出現了以下錯誤!

java.lang.NoSuchMethodError: org.springframework.web.context.ContextLoader.getCurrentWebApplicationC

這個錯誤是什麼呢?

可是也能夠採用另一種方法引入xml,進行獲取要使用的實例:

import org.springframework.web.context.ContextLoader;


           WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();  
            ServletContext servletContext = webApplicationContext.getServletContext();




其中 ContextLoader.getCurrentWebApplicationContext();  是引入的是spring.jar包中的(core包通常有的把core省略了,包含不少其餘的方法,如hibernate方法),

這個方法ContextLoader.getCurrentWebApplicationContext(); 在spring.jar 2.0版本中不存在的,我翻了翻jar包倉庫,發現到2.5.6版本sec03中有這個方法了


我是在這個地址看到的spring.jar (2.5.6)包的!http://repo.spring.io/release/org/springframework/spring/2.5.6.SEC03/

以後就能夠把spring2.0包去掉了,換上這個包2.5.6sec03就能夠了。  (注意mysql服務要確認開啓!別到時候hibernate很差使了。)

關於websocket 採用註解指明URL,採用tomcat啓動的方式來作:mysql

除了spring2.5.6.jar包還有以下包:


javax.websocket-api-1.1.jar

spring-2.5.6.Sec03.jar

spring-websocket-4.3.0.RELEASE.jar

tomcat7-websocket-7.0.62.jar

總結web

package service;

import org.springframework.web.socket.server.standard.SpringConfigurator;
import pojo.Goods;
import javax.websocket.OnClose;
import javax.websocket.OnError;
import javax.websocket.CloseReason;
import javax.websocket.EndpointConfig;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.Session;
import javax.websocket.server.ServerEndpoint;

//註解規定了訪問的URL
@ServerEndpoint(value="/websocket",configurator = SpringConfigurator.class)
public class WebSocketServer {

    //屬性注入
    private Goods goods;
    private GoodsService goodsService;


    public void setGoods(Goods goods) {
        this.goods = goods;
    }

    public void setGoodsService(GoodsService goodsService) {
        this.goodsService = goodsService;
    }

    public WebSocketServer(){
        System.out.println("Socket Constructor!");
    }

   ..........
}

javax.websocket-api-1.1.jar

spring-2.5.6.Sec03.jar

spring-websocket-4.3.0.RELEASE.jar

tomcat7-websocket-7.0.62.jar
this passage from https://www.cnblogs.com/zhaocundang/p/10057305.html
相關文章
相關標籤/搜索