1 Repo
Creating runtime proxies for classes using bytecode manipulation to enable interception without requiring interfaces.
Distinct from Class Method Interception: Distinct from Class Method Interception: focuses on the generation mechanism of the proxy class via bytecode rather than the act of intercepting the method.
Explore 1 awesome GitHub repository matching programming languages & runtimes · Bytecode Proxy Generation. Refine with filters or upvote what's useful.
tiny-spring is a Java inversion of control container and aspect-oriented programming framework. It provides a system for managing object lifecycles and dependency injection to decouple application components. The project features a bytecode proxy generator that enables method interception and behavioral modification for classes that do not implement interfaces. It uses pointcut expressions to match specific classes and methods for the execution of cross-cutting logic via dynamic proxies. The framework manages singleton components and resolves object dependencies using lazy initialization. Ap
Implements a bytecode proxy generator to enable method interception for classes that do not implement interfaces.