我在 WCS7.0 框架中工作。我必须对一些 EJB 的代码进行异常处理,例如,如果发生 finder 异常,我必须在相应的 jsp 上显示一条消息“未找到数据”。
下面是EJB代码
TypedProperty delParam = new TypedProperty();
String shipid = rspProp.getString("shipid");
String addrId=rspProp.getString("addrId");
AddressAccessBean address = new AddressAccessBean();
address.setInitKey_AddressId(addrId);
try {
if((address.getMemberId().equals(memberid)) && address.getAddressField3().equals(shipid)){
address.getEJBRef().remove();
}
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (CreateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (FinderException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NamingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (RemoveException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我将如何在 jsp 上显示消息。