用Atmosphere创建一个简单的钩子

时间:2018-09-23 06:59:00

标签: java atmosphere

我正在尝试使用以下代码创建一个挂钩服务:

@ManagedService(path = "/hooks")
public class CustomHook {

    @Ready
    public void onReady(final AtmosphereResource r) {
        System.out.println("READY->" + r.uuid());
    }

    @Get
    public void onGet(AtmosphereResource r) {
        System.out.println("GET->" + r.uuid());
    }
}

但是当访问URL时,它没有响应,可能丢失了什么?

0 个答案:

没有答案