42 lines
1012 B
Plaintext
42 lines
1012 B
Plaintext
Exclusions for default interceptors can be declared either in xml or as class annotations. Since annotations are more visible to maintainers, they are preferred.
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
<assembly-descriptor>
|
|
<interceptor-binding>
|
|
<ejb-name>MyExcludedClass</ejb-name>
|
|
<exclude-default-interceptors>true</exclude-default-interceptors> <!-- Noncompliant -->
|
|
<exclude-class-interceptors>true</exclude-class-interceptors> <!-- Noncomopliant -->
|
|
<method>
|
|
<method-name>doTheThing</method-name>
|
|
</method>
|
|
</interceptor-binding>
|
|
|
|
</assembly-descriptor>
|
|
----
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
@ExcludeDefaultInterceptors
|
|
public class MyExcludedClass implements MessageListener
|
|
{
|
|
|
|
@ExcludeClassInterceptors
|
|
@ExcludeDefaultInterceptors
|
|
public void doTheThing() {
|
|
// ...
|
|
}
|
|
----
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|