我正在尝试以这种方式将消息从服务器推送到客户端:
PushContext pushContext = PushContextFactory.getDefault().getPushContext();
pushContext.push("/registrationEvent", "There was another registration");
我的问题是我有以下错误
ava.lang.NoClassDefFoundError: Could not initialize class org.primefaces.push.PushContextFactory
但我认为这是由于项目初始化时的问题:
java.lang.NoClassDefFoundError: org/atmosphere/cpr/AsyncSupportListenerAdapter
我尝试添加 jar 气氛文件...没有成功。我做错了吗?我正在使用 glassfish 3.1。
谢谢 !