50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
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[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|