Package org.springframework.aop.aspectj
Class AspectJWeaverMessageHandler
java.lang.Object
org.springframework.aop.aspectj.AspectJWeaverMessageHandler
- All Implemented Interfaces:
- org.aspectj.bridge.IMessageHandler
public class AspectJWeaverMessageHandler
extends Object
implements org.aspectj.bridge.IMessageHandler
Implementation of AspectJ's 
IMessageHandler interface that
 routes AspectJ weaving messages through the same logging system as the
 regular Spring messages.
 Pass the option...
-XmessageHandlerClass:org.springframework.aop.aspectj.AspectJWeaverMessageHandler
 
to the weaver; for example, specifying the following in a
 "META-INF/aop.xml file:
 
<weaver options="..."/>
- Since:
- 2.0
- Author:
- Adrian Colyer, Juergen Hoeller
- 
Field SummaryFields inherited from interface org.aspectj.bridge.IMessageHandlerSYSTEM_ERR, SYSTEM_OUT, THROW
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoiddontIgnore(org.aspectj.bridge.IMessage.Kind messageKind) booleanhandleMessage(org.aspectj.bridge.IMessage message) voidignore(org.aspectj.bridge.IMessage.Kind kind) booleanisIgnoring(org.aspectj.bridge.IMessage.Kind messageKind) 
- 
Constructor Details- 
AspectJWeaverMessageHandlerpublic AspectJWeaverMessageHandler()
 
- 
- 
Method Details- 
handleMessagepublic boolean handleMessage(org.aspectj.bridge.IMessage message) throws org.aspectj.bridge.AbortException - Specified by:
- handleMessagein interface- org.aspectj.bridge.IMessageHandler
- Throws:
- org.aspectj.bridge.AbortException
 
- 
isIgnoringpublic boolean isIgnoring(org.aspectj.bridge.IMessage.Kind messageKind) - Specified by:
- isIgnoringin interface- org.aspectj.bridge.IMessageHandler
 
- 
dontIgnorepublic void dontIgnore(org.aspectj.bridge.IMessage.Kind messageKind) - Specified by:
- dontIgnorein interface- org.aspectj.bridge.IMessageHandler
 
- 
ignorepublic void ignore(org.aspectj.bridge.IMessage.Kind kind) - Specified by:
- ignorein interface- org.aspectj.bridge.IMessageHandler
 
 
-