Registry / other / geronimo-interceptor-1-2-spec

geronimo-interceptor-1-2-spec

JSON →
library1.2javamavenunverified

Apache Geronimo implementation of the Java Interceptor API 1.2 specification.

<dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-interceptor_1.2_spec</artifactId> <version>1.2</version> </dependency>
INSTALL
IMPORT
SIG · GERONIMO-INTERCEPT
G
geronimo-interceptor-1-2-spec
otherjavav1.2
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 interceptor using the javax.interceptor API.

import javax.interceptor.Interceptor; import javax.interceptor.InvocationContext; @Interceptor public class LoggingInterceptor { public Object log(InvocationContext ctx) throws Exception { System.out.println("Calling method: " + ctx.getMethod().getName()); return ctx.proceed(); } }
Debug
Known issues
breakingThis spec is outdated; consider using Jakarta Interceptors 2.x for modern Java EE/Jakarta EE.
fix
Use jakarta.interceptor:jakarta.interceptor-api for Jakarta EE 9+.
affects: >=1.2
Upgrade
Version history
1.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
geronimo-interceptor-1-2-spec — mvn dependency:get geronimo-interceptor-1-2-spec · libregistry