Registry / dependency-injection / jboss-interceptors-api-1-1-spec

jboss-interceptors-api-1-1-spec

JSON →
library1.0.1.Finaljavamavenunverified

Provides the Java EE Interceptors 1.1 API (JSR 318) for defining interceptor methods.

<dependency> <groupId>org.jboss.spec.javax.interceptor</groupId> <artifactId>jboss-interceptors-api_1.1_spec</artifactId> <version>1.0.1.Final</version> </dependency>
INSTALL
IMPORT
SIG · JBOSS-INTERCEPTORS
J
jboss-interceptors-api-1-1-spec
dependency-injectionjavav1.0.1.Final
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Interceptor
javax.interceptor.Interceptor

Define a simple logging interceptor using the Java EE Interceptors API.

import javax.interceptor.Interceptor; import javax.interceptor.AroundInvoke; import javax.interceptor.InvocationContext; @Interceptor public class LoggingInterceptor { @AroundInvoke public Object log(InvocationContext ctx) throws Exception { System.out.println("Calling " + ctx.getMethod()); return ctx.proceed(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.0.1.Finallatest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
40 hits · last 30 days
node
34
Resources
jboss-interceptors-api-1-1-spec — mvn dependency:get jboss-interceptors-api-1-1-spec · libregistry