0

こんにちは、cometd + jquery + Java を使用して次の問題が発生し、メッセージのブロードキャストでいくつかのテストを行っています。

これは私の web.xml で、cometd の Annotations 実装を使用しています。

<!-- Cometd Servlet -->
<servlet>
    <servlet-name>cometd</servlet-name>
    <servlet-class>org.cometd.java.annotation.AnnotationCometdServlet</servlet-class>
    <init-param>
        <param-name>timeout</param-name>
        <param-value>60000</param-value>
    </init-param>
    <init-param>
        <param-name>logLevel</param-name>
        <param-value>3</param-value>
    </init-param>
    <init-param>
        <param-name>services</param-name>
        <param-value>com.api.services.UserStatusService</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    <async-supported>true</async-supported>
</servlet>
<servlet-mapping>
    <servlet-name>cometd</servlet-name>
    <url-pattern>/do/cometd/*</url-pattern>
</servlet-mapping>

これは私が登録したサービスです:

package com.api.services;

import java.util.HashMap;

import javax.inject.Inject;

import org.cometd.bayeux.Message;
import org.cometd.bayeux.client.ClientSession;
import org.cometd.bayeux.client.ClientSessionChannel;
import org.cometd.bayeux.server.BayeuxServer;
import org.cometd.java.annotation.Service;
import org.cometd.java.annotation.Session;
import org.cometd.java.annotation.Subscription;

@Service
public class UserStatusService
{
    @Inject
    private BayeuxServer bayeux;
    @Session
    private ClientSession bayeuxClient;

    @Subscription("/userStatus")
    public void userStatus (Message message)
    {
        HashMap<String, String> mapa = new HashMap<String,String>();
        String channel = message.getChannel();
        System.out.println("*** The Channel is "+channel+" ***");
        ClientSessionChannel chann = bayeuxClient.getChannel(channel);
        mapa.put("canal", channel);
        mapa.put("mensaje", "Hola Wi!!");
        mapa.put("ServChan", bayeux.getChannels().get(0).toString());
        chann.publish(mapa);
    }
}

そして、これはサブスクライブとパブリッシュに使用する JS jQuery コードです (これはより大きなオブジェクトの一部であるため、これに関連する主要なものを貼り付けるだけです)。

     /** On document ready i call this one **/
     initBroad:function(){
    $.cometd.unregisterTransport('websocket');
    $.cometd.init('http://localhost/MyApp/do/cometd');
    console.log("Set cometd initialization");
    main.broadListener();
},
count:0,
subscription:null,
refresh:function(){
    this.appUnsubscribe();
    this.appSubscribe();
},
appUnsubscribe:function(){
    if (this.subscription) 
        $.cometd.unsubscribe(this.subscription);
    this.subscription = null;
},
appSubscribe:function(){
    func = function(msg){
                    /** I had to do this in order to avoid ALL the 500 times it does it :S **/
        if(main.count < 1){
            console.log(main.count + ": " +  msg.data.mensaje);
        }
        main.count++;
    };
    this.subscription = $.cometd.subscribe("/userStatus",func);
},
broadListener:function(){
    console.log("Set the broadListener");
    main.refresh();
},
publishBroad:function(){
    main.refresh();
    $.cometd.publish('/userStatus', {mensaje:"Hola"});
},

まあ、コンソールでメソッドpublishBroadを実行しようとした後、実際には実行されますが、サーバー内で1回のクリック/リクエストで450〜500回実行されます(はい、ブラウザからJavaサーバーへの1回のリクエストであり、450〜500回です)サーバー側でのみ繰り返され、その応答でブラウザーに何度も到達します)!!

私は何を間違えましたか?私はcometdの公式サイトから最新のcometd.jsとjquery.cometd.jsを使用しています。

また、コンソールでこれを確認すると(JBoss AS7を使用しています)、呼び出しがメソッドに入ったかどうかを確認するためにいくつかの出力ログ行を残しました( Sys out println は The Channel is:. と表示され、ログ行 450 も表示されます-JBoss コンソールで 500 回!

誰でもこれを修正するのを手伝ってもらえますか??

ありがとう!!

4

1 に答える 1

1

Your problem is that you're using a ClientSession in your service.

If, in your service, you just want to reply to the sender, then do this:

@Service
public class UserStatusService
{
    @Session
    private LocalSession session;

    @Subscribe("/userStatus")
    public void userStatus(ServerSession remoteClient, ServerMessage message)
    {
        Map<String, String> map = new HashMap<String,String>();
        map.put("mensaje", "Hola Wi!!");
        remoteClient.deliver(session, message.getChannel(), map, null);
    }
}

Please refer to the CometD concepts to understand the difference between a ClientSession, a ServerSession and a LocalSession, and to the annotated services reference.

The reason for the loop you noticed (1 request caused the service to be executed 500+ times) is because you're re-broadcasting to the same channel in the last line if your service.

于 2012-02-17T00:09:08.933 に答える