我已经成功设置了一个包含 2 个 JBoss AS 7 实例的集群,并部署了以下 SLSB:
@Stateless
@Remote(TestEJBRemote.class)
@Clustered
public class TestEJB implements TestEJBRemote {
private static final long serialVersionUID = 1L;
private static final Logger logger = Logger.getLogger(...);
@Override
public void test() {
String nodeName = System.getProperty("jboss.node.name");
logger.info(nodeName);
}
}
从日志文件中我可以看到 bean 已正确部署在集群上。然后,在客户端,我创建了许多线程来查找和调用TestEJB
. 但是,似乎所有实例最终都在同一个节点中。
这是“jndi.properties”文件:
java.naming.factory.url.pkgs=org.jboss.ejb.client.naming
和“jboss-ejb-client.properties”:
endpoint.name=client-endpoint
remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false
remote.connections=default
remote.connection.default.host=192.168.0.1
remote.connection.default.port=4447
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false
remote.connection.default.username=user
remote.connection.default.password=pass
remote.clusters=ejb
remote.cluster.ejb.clusternode.selector=org.jboss.ejb.client.RandomClusterNodeSelector
在客户端我做final InitialContext ctx = new InitialContext();
然后在每个线程中形成:
String name = "ejb:/test//TestEJB!" + TestEJBRemote.class.getName();
TestEJBRemote remote = (TestEJBRemote) ctx.lookup(name);
remote.test();
我做错了什么?
更新
如果我只指定连接列表中的第二个节点,我会得到:
java.lang.IllegalStateException: No EJB receiver available for handling [...] combination for invocation context org.jboss.ejb.client.EJBClientInvoc
ationContext
所以可能这个问题需要首先解决......
更新 2
我最终通过在从节点中设置应用程序用户解决了这个问题。之前,我尝试以管理用户身份连接,但没有成功。
只要我在连接列表中指定一个从节点(在“jboss-ejb-client.properties”中),负载平衡现在也可以正常工作。如果我指定主节点,所有 EJB 将仅在该节点中结束。然而,这个解决方案对我来说已经足够了。