我正在尝试获取一个使用 Glassfish 和 Jersery 的 Atmosphere 聊天程序的简单示例。
到目前为止,我有一个基本的 maven webapp 原型,其结构如下:
聊天资源文件只是一个使用 Atmosphere 注释的简单 REST 服务:
package core;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import org.atmosphere.annotation.Broadcast;
import org.atmosphere.annotation.Suspend;
@Path("/")
public class ChatResource {
@Suspend(contentType = "application/json")
@GET
public String suspend() {
return "";
}
@Broadcast(writeEntity = false)
@POST
@Produces("application/json")
public Response broadcast(Message message) {
return new Response(message.author, message.message);
}
}
消息和响应类只是简单的 POJO 包装器。index.jsp、application.js、jquery.atmosphere.js 和 jquery.js 直接从示例项目中复制(在此处找到)。
我的 web.xml 设置为以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:j2ee="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Archetype Created Web Application</display-name>
<servlet>
<description>AtmosphereServlet</description>
<servlet-name>AtmosphereServlet</servlet-name>
<servlet-class>org.atmosphere.cpr.AtmosphereServlet</servlet-class>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>AtmosphereServlet</servlet-name>
<url-pattern>/chat/*</url-pattern>
</servlet-mapping>
</web-app>
导航到该页面时,我收到以下错误:
抱歉,您的套接字有问题或服务器已关闭
如果我导航到页面尝试访问的路径 ( http://localhost:8080/.../chat ),我会收到以下消息:
org.atmosphere.cpr.AtmosphereMappingException:未找到 AtmosphereHandler。确保在 META-INF/atmosphere.xml 中定义它或使用 @AtmosphereHandlerService 进行注释
我一定是缺少文件或设置配置,但我似乎找不到在哪里(上面的消息说气氛.xml 丢失,但这没有出现在示例中)。任何帮助,将不胜感激。