簡體   English   中英

Vaadin + CDI + Push(大氣)不起作用

[英]Vaadin + CDI + Push (atmosphere) doesn't work

我有一個使用vaadin和vaadin-cdi組件的Java EE 7應用程序。

沒有vaadin push,這是我的配置:

// the Servlet
@WebServlet(value = "/*", asyncSupported = true)
public class MyServlet extends VaadinCDIServlet {
    @Override
    protected void servletInitialized() throws ServletException {
        super.servletInitialized();
    }
}
// ... Then I have a @CDIUI anotated class.

在這里一切正常,直到我將@Push添加到我的@CDIUI注釋類並在類路徑中添加vaadin-push組件

<dependency org="com.vaadin" name="vaadin-push" rev="&vaadin.version;" />

然后我在嘗試訪問我的應用的wildfly中遇到此錯誤

11:38:46,738 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.2.0.Final "Tweek" started in 7771ms - Started 464 of 511 services (92 services are lazy, passive or on-demand)
11:38:53,423 WARNING [com.vaadin.server.DefaultDeploymentConfiguration] (default task-2) 
=================================================================
Vaadin is running in DEBUG MODE.
Add productionMode=true to web.xml to disable debug features.
To show debug window, add ?debug to your application URL.
=================================================================
11:38:53,461 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Installed AtmosphereHandler com.vaadin.server.communication.PushHandler$1 mapped to context-path: /*
11:38:53,461 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Installed the following AtmosphereInterceptor mapped to AtmosphereHandler com.vaadin.server.communication.PushHandler$1
11:38:53,463 INFO  [org.atmosphere.util.IOUtils] (default task-2) META-INF/services/org.atmosphere.cpr.AtmosphereFramework not found in class loader
11:38:53,465 WARNING [org.atmosphere.cpr.AtmosphereFramework] (default task-2) SessionSupport error. Make sure you define org.atmosphere.cpr.SessionSupport as a listener in web.xml instead
11:38:53,477 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Atmosphere is using org.atmosphere.util.VoidAnnotationProcessor for processing annotation
11:38:53,487 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Auto detecting WebSocketHandler in /WEB-INF/classes/
11:38:53,494 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Installed WebSocketProtocol org.atmosphere.websocket.protocol.SimpleHttpProtocol 
11:38:53,500 INFO  [org.atmosphere.container.JSR356AsyncSupport] (default task-2) JSR 356 Mapping path /{path}
11:38:53,503 INFO  [io.undertow.websockets.jsr] (default task-2) UT026005: Adding programmatic server endpoint class org.atmosphere.container.JSR356Endpoint for path /{path}
11:38:53,506 INFO  [io.undertow.websockets.jsr] (default task-2) UT026005: Adding programmatic server endpoint class org.atmosphere.container.JSR356Endpoint for path /{path}/{path0}
11:38:53,506 INFO  [io.undertow.websockets.jsr] (default task-2) UT026005: Adding programmatic server endpoint class org.atmosphere.container.JSR356Endpoint for path /{path}/{path0}/{path1}
11:38:53,507 INFO  [io.undertow.websockets.jsr] (default task-2) UT026005: Adding programmatic server endpoint class org.atmosphere.container.JSR356Endpoint for path /{path}/{path0}/{path1}/{path2}
11:38:53,507 INFO  [io.undertow.websockets.jsr] (default task-2) UT026005: Adding programmatic server endpoint class org.atmosphere.container.JSR356Endpoint for path /{path}/{path0}/{path1}/{path2}/{path3}
11:38:53,507 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Installing Default AtmosphereInterceptor
11:38:53,507 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.CorsInterceptor : CORS Interceptor Support
11:38:53,508 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.CacheHeadersInterceptor : Default Response's Headers Interceptor
11:38:53,508 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.PaddingAtmosphereInterceptor : Browser Padding Interceptor Support
11:38:53,509 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.AndroidAtmosphereInterceptor : Android Interceptor Support
11:38:53,509 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Dropping Interceptor org.atmosphere.interceptor.HeartbeatInterceptor
11:38:53,510 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.SSEAtmosphereInterceptor : SSE Interceptor Support
11:38:53,510 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.JSONPAtmosphereInterceptor : JSONP Interceptor Support
11:38:53,511 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.JavaScriptProtocol : Atmosphere JavaScript Protocol
11:38:53,511 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.WebSocketMessageSuspendInterceptor : org.atmosphere.interceptor.WebSocketMessageSuspendInterceptor
11:38:53,512 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.OnDisconnectInterceptor : Browser disconnection detection
11:38:53,512 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2)    org.atmosphere.interceptor.IdleResourceInterceptor : org.atmosphere.interceptor.IdleResourceInterceptor
11:38:53,512 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Set org.atmosphere.cpr.AtmosphereInterceptor.disableDefaults to disable them.
11:38:53,515 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Using EndpointMapper class org.atmosphere.util.DefaultEndpointMapper
11:38:53,515 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Using BroadcasterCache: org.atmosphere.cache.UUIDBroadcasterCache
11:38:53,515 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Default Broadcaster Class: org.atmosphere.cpr.DefaultBroadcaster
11:38:53,515 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Broadcaster Polling Wait Time 100
11:38:53,515 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Shared ExecutorService supported: true
11:38:53,515 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Messaging Thread Pool Size: Unlimited
11:38:53,516 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Async I/O Thread Pool Size: 200
11:38:53,516 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Using BroadcasterFactory: org.atmosphere.cpr.DefaultBroadcasterFactory
11:38:53,516 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Using WebSocketProcessor: org.atmosphere.websocket.DefaultWebSocketProcessor
11:38:53,519 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Invoke AtmosphereInterceptor on WebSocket message true
11:38:53,519 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) HttpSession supported: true
11:38:53,520 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Atmosphere is using DefaultAtmosphereObjectFactory for dependency injection and object creation
11:38:53,520 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Atmosphere is using async support: org.atmosphere.container.JSR356AsyncSupport running under container: WildFly 8.2.0.Final - 1.1.0.Final using javax.servlet/3.0 and jsr356/WebSocket API
11:38:53,520 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Atmosphere Framework 2.2.4.vaadin4 started.
11:38:53,522 INFO  [org.atmosphere.cpr.AtmosphereFramework] (default task-2) Installed AtmosphereInterceptor  Track Message Size Interceptor using | with priority BEFORE_DEFAULT 

我什至添加了一個web.xml文件,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee 
            http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    <listener>
        <listener-class>org.atmosphere.cpr.SessionSupport</listener-class>
    </listener>

    <context-param>
        <param-name>org.atmosphere.cpr.SessionSupport</param-name>
        <param-value>true</param-value>
    </context-param>
</web-app>

但是錯誤仍然相同。 我真的不明白。 我究竟做錯了什么 ?

我正在使用最新的vaadin 7.4.1,vaadin-cdi 1.0.1和wildfly 8.2

Vaadin引入了一種新模式WEBSOCKET_XHR (從服務器到客戶端的WebSockets ,從客戶端到服務器的XHR ),該模式允許設置cookie,使用帶有CDI/Spring請求范圍等。

參見https://vaadin.com/download/release/7.6/7.6.0/release-notes.html

Marcus Hellberg回答,摘自vaadin論壇的這一主題 (我發現將其放置在這里很重要,因為我先在StackOverflow中完成了此工作,然后再進入了論壇。)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM