簡體   English   中英

EJB 2.1 在集群中拋出包裝的遠程異常

[英]EJB 2.1 throwing wrapped remote exception in cluster

我們正在將 Weblogic 10.3.6 應用程序移動到 Weblogic 12.2.1.2。 我們有許多構成應用程序一部分的 EJB 2.1 bean。 我們遇到了其中一些 bean 的奇怪問題。

當我們有 1 個 ejb 調用另一個並且這個 bean 拋出一個已檢查異常(例如RuleException extends Exception )時,它被作為RemoteException ( RemoteEJBInvokeException ) 拋出。 只有當應用程序在集群中運行時才會發生這種情況。 如果我針對獨立的 jvm 進行部署,它工作正常。

一般的 EJB 模式是 Facade 模式。 在 Facade bean 中,我們使用標准的 JNDI 查找來定位 Home,然后運行 create 方法以返回業務接口/impl

InitialContext ctx = new InitialContext();
ReportManagementHome reportManagementHome = (ReportManagementHome) ctx.lookup("ReportManagement");
ReportManagement reportManagement = reportManagementHome.create();

ReportManagement bean 運行業務邏輯並拋出 RuleException。

這是外觀中調用第二個 bean 的示例方法:

public String doTest() {
    String s = null;
    try
    {
      s = reportManagement.doValidate();
    }
    catch ( RuleException re )
    {
      rollBack();
    } catch (RemoteException e)
    {
      e.printStackTrace();
    }

    return s;
  }

這是第二個 bean 中的doValidate()方法:

public String doValidate( )
      throws RuleException, CustomException
  {

    int test = 1;

    if (test == 1)
    {
      throw new RuleException();
    }

    return "Hello";

  }

盡管RuleException已正確到達並拋出,但當外觀捕獲到它時,它是一個RemoteException

這是 ejbs/接口的示例列表:

ReportManagement
ReportManagementBean
ReportManagementFacade
ReportManagementFacadeBean
ReportManagementFacadeHome
ReportManagementFacadeLocal
ReportManagementFacadeLocalHome
ReportManagementHome
ReportManagementLocal
ReportManagementLocalHome

這是ejb-jar.xml

    <?xml version='1.0' encoding='UTF-8'?>
<ejb-jar xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"
         version="2.1">
<enterprise-beans>
    <session>
      <display-name>ReportManagementFacade</display-name>
      <ejb-name>ReportManagementFacade</ejb-name>
      <home>com.ejb.ReportManagementFacadeHome</home>
      <remote>com.ejb.ReportManagementFacade</remote>
      <local-home>com.ejb.ReportManagementFacadeLocalHome</local-home>
      <local>com.ejb.ReportManagementFacadeLocal</local>
      <ejb-class>com.ejb.ReportManagementFacadeBean</ejb-class>
      <session-type>Stateless</session-type>
      <transaction-type>Container</transaction-type>
    </session>
    <session>
      <display-name>ReportManagement</display-name>
      <ejb-name>ReportManagement</ejb-name>
      <home>com.ejb.ReportManagementHome</home>
      <remote>com.ejb.ReportManagement</remote>
      <local-home>com.ejb.ReportManagementLocalHome</local-home>
      <local>com.ejb.ReportManagementLocal</local>
      <ejb-class>com.ejb.ReportManagementBean</ejb-class>
      <session-type>Stateless</session-type>
      <transaction-type>Container</transaction-type>
    </session>
  </enterprise-beans>
  <assembly-descriptor>
    <container-transaction>
      <method>
        <ejb-name>ReportManagementFacade</ejb-name>
        <method-name>*</method-name>
      </method>
      <trans-attribute>Required</trans-attribute>
    </container-transaction>
    <container-transaction>
      <method>
        <ejb-name>ReportManagement</ejb-name>
        <method-name>*</method-name>
      </method>
      <trans-attribute>Required</trans-attribute>
    </container-transaction>
  </assembly-descriptor>
</ejb-jar>

這是 weblogic-ejb-jar.xml

    <?xml version='1.0' encoding='UTF-8'?>
<weblogic-ejb-jar xmlns="http://xmlns.oracle.com/weblogic/weblogic-ejb-jar"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-ejb-jar http://xmlns.oracle.com/weblogic/weblogic-ejb-jar/1.2/weblogic-ejb-jar.xsd">
  <weblogic-enterprise-bean>
    <ejb-name>ReportManagementFacade</ejb-name>
    <jndi-name>Destin8.ejb.reportmanagement.ReportManagementFacade</jndi-name>
    <local-jndi-name>Destin8.ejb.reportmanagement.ReportManagementFacadeLocal</local-jndi-name>
    <enable-call-by-reference>true</enable-call-by-reference>
  </weblogic-enterprise-bean>
  <weblogic-enterprise-bean>
    <ejb-name>ReportManagement</ejb-name>
    <jndi-name>Destin8.ejb.reportmanagement.ReportManagement</jndi-name>
    <local-jndi-name>Destin8.ejb.reportmanagement.ReportManagementLocal</local-jndi-name>
    <enable-call-by-reference>true</enable-call-by-reference>
  </weblogic-enterprise-bean>
  <weblogic-compatibility>
    <entity-always-uses-transaction>true</entity-always-uses-transaction>
  </weblogic-compatibility>
</weblogic-ejb-jar>

這是 StackTrace:

weblogic.rmi.RemoteEJBInvokeException: null; nested exception is: 
    com.exception.RuleException
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:27)
    at com.ejb.ReportManagement_tq6u66_EOImpl.doLUMValidate(Unknown Source)
    at com.ejb.ReportManagementFacadeBean.doLUM(ReportManagementFacadeBean.java:82)
    at com.ejb.ReportManagementFacade_sidvua_EOImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invokeInternal(SessionRemoteMethodInvoker.java:54)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:21)
    at com.ejb.ReportManagementFacade_sidvua_EOImpl.doLUM(Unknown Source)
    at com.ajf.Page1ManagedBean.refreshDate(Page1ManagedBean.java:105)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at com.sun.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:181)
    at com.sun.el.parser.AstValue.invoke(AstValue.java:289)
    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:304)
    at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMethodExpression.java:40)
    at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java:50)
    at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMethodExpression.java:40)
    at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java:50)
    at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
    at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:87)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
    at javax.faces.component.UICommand.broadcast(UICommand.java:315)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:790)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1282)
    at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:81)
    at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
    at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:198)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:650)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:286)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:260)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:137)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:350)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:78)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:32)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:78)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3683)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3649)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:326)
    at weblogic.security.service.SecurityManager.runAsForUserCode(SecurityManager.java:197)
    at weblogic.servlet.provider.WlsSecurityProvider.runAsForUserCode(WlsSecurityProvider.java:203)
    at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:71)
    at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2433)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2281)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2259)
    at weblogic.servlet.internal.ServletRequestImpl.runInternal(ServletRequestImpl.java:1691)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1651)
    at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:270)
    at weblogic.invocation.ComponentInvocationContextManager._runAs(ComponentInvocationContextManager.java:348)
    at weblogic.invocation.ComponentInvocationContextManager.runAs(ComponentInvocationContextManager.java:333)
    at weblogic.work.LivePartitionUtility.doRunWorkUnderContext(LivePartitionUtility.java:54)
    at weblogic.work.PartitionUtility.runWorkUnderContext(PartitionUtility.java:41)
    at weblogic.work.SelfTuningWorkManagerImpl.runWorkUnderContext(SelfTuningWorkManagerImpl.java:640)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:406)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:346)
Caused by: com.exception.RuleException
    at com.ejb.ReportManagementBean.doLUMValidate(ReportManagementBean.java:92)
    at com.ejb.ReportManagement_tq6u66_EOImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invokeInternal(SessionRemoteMethodInvoker.java:54)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:21)
    ... 55 more

對此問題的任何指導將不勝感激。

Oracle 應我的要求在補丁中修復了這個問題。 該補丁的鏈接在這里Patch Link 您將需要 Oracle 支持登錄才能訪問它。

這個:

 <enable-call-by-reference>true</enable-call-by-reference>

導致您在同一個 JVM 中的遠程調用具有本地調用語義,包括異常處理。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM