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 java.lang.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 Summary |
private static java.lang.String |
AJ_ID
|
private static Log |
LOGGER
|
Fields inherited from interface org.aspectj.bridge.IMessageHandler |
SYSTEM_ERR, SYSTEM_OUT, THROW |
Method Summary |
void |
dontIgnore(org.aspectj.bridge.IMessage.Kind messageKind)
|
boolean |
handleMessage(org.aspectj.bridge.IMessage message)
|
void |
ignore(org.aspectj.bridge.IMessage.Kind kind)
|
boolean |
isIgnoring(org.aspectj.bridge.IMessage.Kind messageKind)
|
private java.lang.String |
makeMessageFor(org.aspectj.bridge.IMessage aMessage)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AJ_ID
private static final java.lang.String AJ_ID
- See Also:
- Constant Field Values
LOGGER
private static final Log LOGGER
AspectJWeaverMessageHandler
public AspectJWeaverMessageHandler()
handleMessage
public boolean handleMessage(org.aspectj.bridge.IMessage message)
throws org.aspectj.bridge.AbortException
- Specified by:
handleMessage
in interface org.aspectj.bridge.IMessageHandler
- Throws:
org.aspectj.bridge.AbortException
makeMessageFor
private java.lang.String makeMessageFor(org.aspectj.bridge.IMessage aMessage)
isIgnoring
public boolean isIgnoring(org.aspectj.bridge.IMessage.Kind messageKind)
- Specified by:
isIgnoring
in interface org.aspectj.bridge.IMessageHandler
dontIgnore
public void dontIgnore(org.aspectj.bridge.IMessage.Kind messageKind)
- Specified by:
dontIgnore
in interface org.aspectj.bridge.IMessageHandler
ignore
public void ignore(org.aspectj.bridge.IMessage.Kind kind)
- Specified by:
ignore
in interface org.aspectj.bridge.IMessageHandler