Uploaded image for project: 'Forge'
  1. Forge
  2. FORGE-2151

cdi-new-interceptor doesn't generate an @AroundInvoke on the method

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 2.12.3.Final
    • 2.12.2.Final
    • Java EE
    • None

    Description

      The cdi-new-interceptor generates the following method :

       private Object intercept(InvocationContext ic) throws Exception
         {
            try
            {
               return ic.proceed();
            }
            finally
            {
            }
         }
      

      It misses an @AroundInvoke

        @AroundInvoke
       private Object intercept(InvocationContext ic) throws Exception
         {
            try
            {
               return ic.proceed();
            }
            finally
            {
            }
         }
      

      Attachments

        Activity

          People

            agoncal Antonio Goncalves (Inactive)
            agoncal Antonio Goncalves (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: