Uses of Interface
org.springframework.core.ParameterNameDiscoverer
Packages that use ParameterNameDiscoverer Package Description org.springframework.aop.aspectj AspectJ integration package.org.springframework.aop.aspectj.annotation Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories.org.springframework.beans.factory.support Classes supporting theorg.springframework.beans.factorypackage.org.springframework.context.expression Expression parsing support within a Spring application context.org.springframework.core Provides basic classes for exception handling and version detection, and other core helpers that are not specific to any part of the framework.org.springframework.jmx.export.assembler Provides a strategy for MBeanInfo assembly.org.springframework.messaging.handler.invocation Common infrastructure for invoking message handler methods.org.springframework.messaging.handler.invocation.reactive Common infrastructure for invoking message handler methods with non-blocking, and reactive contracts.org.springframework.validation.beanvalidation Support classes for integrating a JSR-303 Bean Validation provider (such as Hibernate Validator) into a Spring ApplicationContext and in particular with Spring's data binding and validation APIs.org.springframework.web.method.support Generic support classes for handler method processing.org.springframework.web.reactive.result.method Infrastructure for handler method processing.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotationpackage.Uses of ParameterNameDiscoverer in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement ParameterNameDiscoverer Modifier and Type Class Description classAspectJAdviceParameterNameDiscovererParameterNameDiscovererimplementation that tries to deduce parameter names for an advice method from the pointcut expression, returning, and throwing clauses.Methods in org.springframework.aop.aspectj that return ParameterNameDiscoverer Modifier and Type Method Description protected ParameterNameDiscovererAbstractAspectJAdvice. createParameterNameDiscoverer()Create a ParameterNameDiscoverer to be used for argument binding.Uses of ParameterNameDiscoverer in org.springframework.aop.aspectj.annotation
Fields in org.springframework.aop.aspectj.annotation declared as ParameterNameDiscoverer Modifier and Type Field Description protected ParameterNameDiscovererAbstractAspectJAdvisorFactory. parameterNameDiscovererUses of ParameterNameDiscoverer in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidDependencyDescriptor. initParameterNameDiscovery(ParameterNameDiscoverer parameterNameDiscoverer)Initialize parameter name discovery for the underlying method parameter, if any.Uses of ParameterNameDiscoverer in org.springframework.beans.factory.support
Methods in org.springframework.beans.factory.support that return ParameterNameDiscoverer Modifier and Type Method Description protected ParameterNameDiscovererAbstractAutowireCapableBeanFactory. getParameterNameDiscoverer()Return the ParameterNameDiscoverer to use for resolving method parameter names if needed.Methods in org.springframework.beans.factory.support with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidAbstractAutowireCapableBeanFactory. setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer to use for resolving method parameter names if needed (e.g.Uses of ParameterNameDiscoverer in org.springframework.context.expression
Methods in org.springframework.context.expression that return ParameterNameDiscoverer Modifier and Type Method Description protected ParameterNameDiscovererCachedExpressionEvaluator. getParameterNameDiscoverer()Return a shared parameter name discoverer which caches data internally.Constructors in org.springframework.context.expression with parameters of type ParameterNameDiscoverer Constructor Description MethodBasedEvaluationContext(Object rootObject, Method method, Object[] arguments, ParameterNameDiscoverer parameterNameDiscoverer)Uses of ParameterNameDiscoverer in org.springframework.core
Classes in org.springframework.core that implement ParameterNameDiscoverer Modifier and Type Class Description classDefaultParameterNameDiscovererDefault implementation of theParameterNameDiscovererstrategy interface, using the Java 8 standard reflection mechanism (if available), and falling back to the ASM-basedLocalVariableTableParameterNameDiscovererfor checking debug information in the class file.classKotlinReflectionParameterNameDiscovererParameterNameDiscovererimplementation which uses Kotlin's reflection facilities for introspecting parameter names.classLocalVariableTableParameterNameDiscovererImplementation ofParameterNameDiscovererthat uses the LocalVariableTable information in the method attributes to discover parameter names.classPrioritizedParameterNameDiscovererParameterNameDiscovererimplementation that tries several discoverer delegates in succession.classStandardReflectionParameterNameDiscovererParameterNameDiscovererimplementation which uses JDK 8's reflection facilities for introspecting parameter names (based on the "-parameters" compiler flag).Methods in org.springframework.core with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidPrioritizedParameterNameDiscoverer. addDiscoverer(ParameterNameDiscoverer pnd)Add a furtherParameterNameDiscovererdelegate to the list of discoverers that thisPrioritizedParameterNameDiscovererchecks.voidMethodParameter. initParameterNameDiscovery(ParameterNameDiscoverer parameterNameDiscoverer)Initialize parameter name discovery for this method parameter.Uses of ParameterNameDiscoverer in org.springframework.jmx.export.assembler
Methods in org.springframework.jmx.export.assembler that return ParameterNameDiscoverer Modifier and Type Method Description protected ParameterNameDiscovererAbstractReflectiveMBeanInfoAssembler. getParameterNameDiscoverer()Return the ParameterNameDiscoverer to use for resolving method parameter names if needed (may benullin order to skip parameter detection).Methods in org.springframework.jmx.export.assembler with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidAbstractReflectiveMBeanInfoAssembler. setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer to use for resolving method parameter names if needed (e.g.Uses of ParameterNameDiscoverer in org.springframework.messaging.handler.invocation
Methods in org.springframework.messaging.handler.invocation with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidInvocableHandlerMethod. setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer for resolving parameter names when needed (e.g.Uses of ParameterNameDiscoverer in org.springframework.messaging.handler.invocation.reactive
Methods in org.springframework.messaging.handler.invocation.reactive that return ParameterNameDiscoverer Modifier and Type Method Description ParameterNameDiscovererInvocableHandlerMethod. getParameterNameDiscoverer()Return the configured parameter name discoverer.Methods in org.springframework.messaging.handler.invocation.reactive with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidInvocableHandlerMethod. setParameterNameDiscoverer(ParameterNameDiscoverer nameDiscoverer)Set the ParameterNameDiscoverer for resolving parameter names when needed (e.g.Uses of ParameterNameDiscoverer in org.springframework.validation.beanvalidation
Methods in org.springframework.validation.beanvalidation with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidLocalValidatorFactoryBean. setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer to use for resolving method and constructor parameter names if needed for message interpolation.Uses of ParameterNameDiscoverer in org.springframework.web.method.support
Methods in org.springframework.web.method.support with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidInvocableHandlerMethod. setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer for resolving parameter names when needed (e.g.Uses of ParameterNameDiscoverer in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method that return ParameterNameDiscoverer Modifier and Type Method Description ParameterNameDiscovererInvocableHandlerMethod. getParameterNameDiscoverer()Return the configured parameter name discoverer.ParameterNameDiscovererSyncInvocableHandlerMethod. getParameterNameDiscoverer()Return the configured parameter name discoverer.Methods in org.springframework.web.reactive.result.method with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidInvocableHandlerMethod. setParameterNameDiscoverer(ParameterNameDiscoverer nameDiscoverer)Set the ParameterNameDiscoverer for resolving parameter names when needed (e.g.voidSyncInvocableHandlerMethod. setParameterNameDiscoverer(ParameterNameDiscoverer nameDiscoverer)Set the ParameterNameDiscoverer for resolving parameter names when needed (e.g.Uses of ParameterNameDiscoverer in org.springframework.web.servlet.mvc.method.annotation
Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type ParameterNameDiscoverer Modifier and Type Method Description voidRequestMappingHandlerAdapter. setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer to use for resolving method parameter names if needed (e.g.