Java org.springframework.beans.factory.config MethodInvokingFactoryBean fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans.factory.config MethodInvokingFactoryBean fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans.factory.config MethodInvokingFactoryBean.

The text is from its open source code.

Subclass

org.springframework.beans.factory.config.MethodInvokingFactoryBean has subclasses.
Click this link to see all its subclasses.

Constructor

Method

voidafterPropertiesSet()
ObjectgetObject()
Returns the same value each time if the singleton property is set to "true", otherwise returns the value returned from invoking the specified method on the fly.
ObjectgetTargetObject()
Return the target object on which to call the target method.
voidsetArguments(Object... arguments)
Set arguments for the method invocation.
voidsetStaticMethod(String staticMethod)
Set a fully qualified static method name to invoke, e.g.
voidsetTargetClass(@Nullable Class targetClass)
Set the target class on which to call the target method.
voidsetTargetMethod(@Nullable String targetMethod)
Set the name of the method to be invoked.