Around advice style inspection
When using @Around advice, remember two things:
Calling
org.aspectj.lang.ProceedingJoinPoint#proceedis necessary, otherwise the call won't reach the target.Returning the result value (typed
java.lang.Object) of that call is necessary, otherwise the return value will never reach the original caller.
However, the following two conditions almost always indicate a coding error:
The signature for the
@Aroundmethod does not haveProceedingJoinPointas the first argument: in this case, it's impossible for the call to reach the target.The signature for the
@Aroundmethod does not haveObjectas a return type: in this case, the return value of the target method is always lost.
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
AroundAdviceStyleInspection- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Suppressing Inspection
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |