1 Reply Latest reply on Apr 20, 2009 1:08 PM by mwohlf

    A.O.P in Seam

    neelima

      hello,
      I am into a project thats being built in seam.I am asked to do the A.O.P part.I am to do the logging part.What actually is this.Kindly,tell me what is that i need to do and also explain me in detail as to what should i do to add A.O.P features to the project.

        • 1. Re: A.O.P in Seam
          mwohlf

          In good tradition of this forum here is rude answer:


          Advanced Oxidation Processes, refers to a set of chemical treatment procedures designed to remove organic and inorganic materials in waste water by oxidation.


          Now, seriously:


          You don't need AOP (Aspect Oriented Programming) to do Logging in Seam since you can inject a logger with the @Logger annotation and use that logger in your Seam components, pure AOP Logging would reduce your logging abilities to just log the method entries and -exits as far as I understand AOP.


          If you really need AOP you should take a look at the @Interceptors annotation:
          My Link