私は、CometD を Grails 2.0 アプリケーションに統合する作業を行っています (新しいプラグインを作成することにより、既存の cometd プラグインは現在かなり壊れているように見えるため、使用していません)。すべてが適切に構成されていると思います。私が経験しているのは、ブラウザが接続すると、最初のメタ/ハンドシェイクが成功することです。ただし、その後のすべての meta/connect 呼び出しは、multiple-client のアドバイスが true に設定されて返され、ロング ポーリング接続が閉じられます。これは2秒ごとに発生します(デフォルトの間隔だと思います)。
前述したように、私は Grails 2.0 を使用しています。Tomcat 7 は、Grails がデフォルトで使用するものです。
これが私が現在見ているものです:
/meta/handshake への呼び出し
Request URL:http://localhost:8080/cometd/handshake
Request Method:POST
Status Code:200 OK
Request Headers
Accept:*/*
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:182
Content-Type:application/json;charset=UTF-8
Host:localhost:8080
Origin:http://localhost:8080
Referer:http://localhost:8080/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11
X-Requested-With:XMLHttpRequest
Request Payload
[{"version":"1.0","minimumVersion":"0.9","channel":"/meta/handshake","supportedConnectionTypes":["long-polling","callback-polling"],"advice":{"timeout":60000,"interval":0},"id":"1"}]
Response Headers
Content-Length:201
Content-Type:application/json;charset=UTF-8
Date:Tue, 14 Feb 2012 03:32:24 GMT
Server:Apache-Coyote/1.1
Set-Cookie:BAYEUX_BROWSER=dac8yl3vlli7s8x2gymdm2ca177s; Path=/
これは戻りペイロードです:
[{"id":"1","minimumVersion":"1.0","supportedConnectionTypes":["callback-polling","long-polling"],"successful":true,"channel":"/meta/handshake","clientId":"115v93y19uvavr159qvzz43yct1","version":"1.0"}]
ブラウザにクッキーが設定されていることを確認しました。/meta/connect への後続の呼び出しは次のようになります。
Request URL:http://localhost:8080/cometd/connect
Request Method:POST
Status Code:200 OK
Request Headers
Accept:*/*
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Content-Length:134
Content-Type:application/json;charset=UTF-8
Cookie:BAYEUX_BROWSER=dac8yl3vlli7s8x2gymdm2ca177s
Host:localhost:8080
Origin:http://localhost:8080
Referer:http://localhost:8080/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11
X-Requested-With:XMLHttpRequest
Request Payload
[{"channel":"/meta/connect","connectionType":"long-polling","advice":{"timeout":0},"id":"2","clientId":"115v93y19uvavr159qvzz43yct1"}]
Response Headers
Content-Length:116
Content-Type:application/json;charset=UTF-8
Date:Tue, 14 Feb 2012 03:32:24 GMT
Server:Apache-Coyote/1.1
リクエスト ペイロードの content-length と id はリクエストごとに変更されます。最初の 3 つの呼び出しは次のように返されます。
コール 1:
[{"id":"2","successful":true,"advice":{"interval":0,"reconnect":"retry","timeout":30000},"channel":"/meta/connect"}]
コール 2:
[{"id":"3","successful":true,"channel":"/meta/connect"}]
コール 3:
[{"id":"4","successful":true,"advice":{"interval":2000,"reconnect":"retry","multiple-clients":true},"channel":"/meta/connect"}]
その時点から、戻ってくるすべてのメッセージは最後のものとまったく同じです。開いているブラウザ ウィンドウ/タブは 1 つだけです。
以下は、web.xml ファイルの該当する部分のコピーです。
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="3.0" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
...
<servlet>
<servlet-name>cometd</servlet-name>
<servlet-class>org.cometd.server.CometdServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
<init-param>
<param-name>timeout</param-name>
<param-value>30000</param-value>
</init-param>
<init-param>
<param-name>logLevel</param-name>
<param-value>3</param-value>
</init-param>
</servlet>
...
<servlet-name>cometd</servlet-name>
<url-pattern>/cometd/*</url-pattern>
</servlet-mapping>
...
</web-app>
BuildConfig.groovy:
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.target.level = 1.6
grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits "global"
log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
repositories {
mavenCentral()
}
dependencies {
def cometVersion = '2.4.0'
compile(group: 'org.cometd.java', name: 'cometd-java-server', version: cometVersion) {
excludes 'servlet-api'
}
compile group: 'org.cometd.java', name: 'bayeux-api', version: cometVersion
runtime group: 'org.eclipse.jetty', name: 'jetty-servlets', version: '7.6.0.v20120127'
test group: 'org.cometd.java', name: 'cometd-java-client', version: cometVersion
}
plugins {
build(":tomcat:$grailsVersion",
":release:1.0.0") {
export = false
}
}
}
最後に、CometdGrailsPlugin.groovy の doWithSpring セクション:
def doWithSpring = {
bayeux(BayeuxServerImpl) { bean ->
bean.initMethod = 'start'
bean.destroyMethod = 'stop'
}
// the CometdServlet will pick up the Bayeux object from the servlet context
bayeuxAttributeExporter(ServletContextAttributeExporter) {
attributes = [(BayeuxServer.ATTRIBUTE): ref('bayeux')]
}
}
うまくいけば、これはあまり多くの情報ではありません。私は過去数日間これを理解しようとしてきましたが、アイデアが不足しており、本当に助けが必要です