Currently the only way you get pooling is with EJB3. The POJO model currently allocates an instance per request. This should be improved to reuse the same instance across multiple requests like the servlet container.
While we could add pooling to the POJO model, it would only be relevant for endpoints that implement SingleThreadModel, since otherwise they are supposed to be written to handle concurrent requests. -Jason View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033164#4033164 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4033164 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
