Add load balancing and failover support to EJB3 Session Beans

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 3558

This topic has not yet been written. The content below is from the topic description.
EJB3 Session Bean Clustering Quick Start To add load balancing and failover capabilities to your EJB3 session beans, simply add the org.jboss.ejb3.annotation. Clustered annotation to the bean class for your stateful or stateless bean: @javax.ejb.Stateful @org.jboss.ejb3.annotation.Clustered public class MyBean implements MySessionInt { public void test() { // Do something cool { {