Registry / utility / cglib-full

cglib-full

JSON →
library2.0.2javamavenunverified

CGLIB is a powerful, high-performance code generation library for Java.

<dependency> <groupId>cglib</groupId> <artifactId>cglib-full</artifactId> <version>2.0.2</version> </dependency>
INSTALL
IMPORT
SIG · CGLIB-FULL
C
cglib-full
utilityjavav2.0.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.

Enhancer
net.sf.cglib.proxy.Enhancer

Creates a dynamic proxy using CGLIB Enhancer.

import net.sf.cglib.proxy.Enhancer; import net.sf.cglib.proxy.MethodInterceptor; public class Example { public static void main(String[] args) { Enhancer enhancer = new Enhancer(); enhancer.setSuperclass(MyClass.class); enhancer.setCallback((MethodInterceptor) (obj, method, args1, proxy) -> proxy.invokeSuper(obj, args1)); MyClass proxy = (MyClass) enhancer.create(); } }
Debug
Known issues
breakingcglib-full may conflict with other cglib versions; prefer cglib:cglib or cglib:cglib-nodep.
fix
Use cglib:cglib:3.3.0 instead of cglib-full.
affects: >=2.0.0
Upgrade
Version history
2.0.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources
cglib-full — mvn dependency:get cglib-full · libregistry