Atmosphere を設定しようとしていますが、EventBus にイベントを投稿すると、それが得られます
java.lang.IllegalStateException: MeteorServlet not defined in web.xml
at org.atmosphere.cpr.Meteor.build(Meteor.java:170) ~[atmosphere-runtime-1.0.8.jar:1.0.8]
at org.atmosphere.cpr.Meteor.build(Meteor.java:151) ~[atmosphere-runtime-1.0.8.jar:1.0.8]
at org.atmosphere.cpr.Meteor.build(Meteor.java:137) ~[atmosphere-runtime-1.0.8.jar:1.0.8]
at org.atmosphere.cpr.Meteor.build(Meteor.java:124) ~[atmosphere-runtime-1.0.8.jar:1.0.8]
at org.apache.wicket.atmosphere.AtmosphereBehavior.onResourceRequested(AtmosphereBehavior.java:107) ~[wicket-atmosphere-0.7.jar:0.7]
... 56 common frames omitted
私は Wicket を使用します。これは AjaxButton onSubmit 実装です。
public void onSubmit(AjaxRequestTarget target, Form<?> form) {
EventBus.get().post(message.getModelObject());
}
Guice を使用して Atmosphere を構成しています。私の ServletModule 実装では:
Map<String, String> params = new HashMap<String, String>();
params.put("applicationClassName", "org.mycompany.MyWebApplication");
params.put(ApplicationConfig.PROPERTY_SERVLET_MAPPING, "/session/**");
params.put(ApplicationConfig.PROPERTY_SESSION_SUPPORT, "true");
params.put(ApplicationConfig.WEBSOCKET_PROTOCOL, "org.atmosphere.websocket.protocol.EchoProtocol");
params.put(ApplicationConfig.BROADCAST_FILTER_CLASSES, "org.apache.wicket.atmosphere.TrackMessageSizeFilter");
filter("/session/**").through(AtmosphereFilter.class, params);
これは私のatmoment.xmlです:
<atmosphere-handler context-root="/session/**"
class-name="org.atmosphere.handler.ReflectorServletProcessor">
</atmosphere-handler>
プログラムでフィルターを構成したいのですが、大気フィルターでそれを行うことはできますか? はいの場合、何が間違っていますか?