jodd.proxetta.package-info Maven / Gradle / Ivy
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.
/**
* Proxetta creates the fastest proxy subclasses in an easy, java-friendly way.
*
* Proxy is defined by an aspect: advice and pointcut. Proxetta proxy implementation is all about
* wrapping target methods at defined pointcuts with advice's methods. Advice's methods intercepts
* target method invocation.
*
* Proxetta advices are plain java code that use special 'macro'-alike static methods from ProxyTarget
class.
* These static method invocations will be replaced with appropriate target invocation, once when proxy
* subclass is created. This unique feature makes generated code not to use reflections, and therefore, very fast.
*/
package jodd.proxetta;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy