0
有一個應用程序ABC
,其依賴關係在ejb module 'XYZ'
上,但兩者都部署在不同的服務器計算機上運行的&。如何查找某個類的對象
ABC
部署在JBoss AS & IP地址是192.108.1.1
XYZ
部署在JBoss AS & IP地址是192.108.1.2
,有其Access數據庫和xyzService類填充數據到一個bean類,請參見下面
@Stateless(mappedName = "ejb/xyzService")
@TransactionManagement(TransactionManagementType.BEAN)
public class XyzService extends XyzPersistenceService implements xyzRemote, xyzLocal {
public List<xyzBean> fetchDataFromDB (List<String> idList) throws Exception
{
List<xyzBean> detailList = null;
try {
// gets data from DB and populate into a bean class i.e. xyzBean
} catch (Exception e) {
new myExceptionClass("error", e);
}
return detailList;
}
}
//Bean class
public class xyzBean{
String Id;
String name;
// getter-setter here
}
現在我想, 1.
查找服務類XYZ模塊的對象 2.
調用的方法
3.
得到bean類的列表
請您指導我該怎麼做,而我有點困惑如何開始從我的ABC應用程序這樣做呢?
非常感謝艾略特。感謝您的幫助和時間。 – user1010399