当前位置: 首页 > 工具软件 > WildFly > 使用案例 >

wildFly10

缪阎宝
2023-12-01

用wildfly10发布EJB并远程调用

部署一个无状态的会话bean很简单,但是在远程调用时会出现很多问题。
大多集中在classpath中几个文件的缺失

需要导入的jar包是wildfly安装目录下的/bin/client/jboss-client.jar
需要手动配置jboss-ejb-client.properties文件,并放到ejbModule(新建EJB project后自动生成的目录,相当于java/src)下

这是我的properties:

 endpoint.name=client-endpoint
remote.connectionprovider.create.options.org.xnio.Options.SSL_ENABLED=false
jboss.naming.client.ejb.context=true
remote.connections=default

remote.connection.default.host=localhost
remote.connection.default.port=8080
remote.connection.default.connect.options.org.xnio.Options.SASL_POLICY_NOANONYMOUS=false

remote.connection.default.username=kent
remote.connection.default.password=pangzi

其中客户端代码如下:

Properties prop = new Properties(); prop.put(Context.URL_PKG_PREFIXES,"org.jboss.ejb.client.naming");
        Context context = new InitialContext(prop);
        String viewName = CalculatorRemote.class.getName();
        CalculatorRemote calRemote = (CalculatorRemote)context.lookup("ejb:CalEJBEAR/CalEJB//Calculator!"+viewName);
        System.out.println("3+2="+calRemote.add(3,2));
        context.close();

经常出现的异常是 java.lang.IllegalStateException: EJBCLIENT000025: No EJB receiver available for handling

如果已经确定properties文件放置路径没问题,那就是jndi命名问题了

JNDI的命名规范如下,那么需要找到自己的app的信息

For stateless beans:
ejb:<app-name>/<module-name>/<distinct-name>/<bean-name>!<fully-qualified-classname-of-the-remote-interface>
For stateful beans:
ejb:<app-name>/<module-name>/<distinct-name>/<bean-name>!<fully-qualified-classname-of-the-remote-interface>?stateful

这时候需要打开wildFly administrator console界面,可以直接开启服务器后,在浏览器中输入http://localhost:9990/console/App.html#home
Runtime->Standalone Server->Subsystems->JNDI view
进入JNDI视图后,最下面点开 applications,就是你发布成功的ejb
第一个是appname 第二个是module name,distinct name可以设空,bean name就是实现remote/local 接口的bean类名,远程接口的全名建议使用xxx.class.getName()来输入,避免书写错误。

 类似资料: