Uses of Interface
org.aoju.bus.proxy.Invoker
Packages that use Invoker
Package
Description
代理工厂
简化动态代理
基于cglib的ProxyFactory实现
基于javassist的ProxyFactory实现
Invoker实现
-
Uses of Invoker in org.aoju.bus.proxy
Methods in org.aoju.bus.proxy with parameters of type InvokerModifier and TypeMethodDescriptionFactory.createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class[] proxyClasses) Factory.createInvokerProxy(Invoker invoker, Class[] proxyClasses) -
Uses of Invoker in org.aoju.bus.proxy.factory.cglib
Methods in org.aoju.bus.proxy.factory.cglib with parameters of type InvokerModifier and TypeMethodDescriptionCglibFactory.createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class[] proxyClasses) -
Uses of Invoker in org.aoju.bus.proxy.factory.javassist
Methods in org.aoju.bus.proxy.factory.javassist with parameters of type InvokerModifier and TypeMethodDescriptionJavassistFactory.createInvokerProxy(ClassLoader classLoader, Invoker invoker, Class[] proxyClasses) -
Uses of Invoker in org.aoju.bus.proxy.invoker
Classes in org.aoju.bus.proxy.invoker that implement InvokerModifier and TypeClassDescriptionclass支持的调用程序,这意味着它在从目标提供程序返回的对象上找到匹配的方法并调用它。 该类有助于将现有类调整为它没有实现的接口class适配器类,将JDK的InvocationHandler接口调整为Commons Proxy的Invoker接口class一个仅为所有方法调用返回null的Invoker实现 这个类对于需要“空对象”设计模式的场景非常有用