Uses of Interface
org.springframework.core.ParameterNameDiscoverer
Packages that use ParameterNameDiscoverer
Package
Description
AspectJ integration package.
Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.
SPI interfaces and configuration-related convenience classes for bean factories.
Classes supporting the
org.springframework.beans.factory package.Expression parsing support within a Spring application context.
Provides basic classes for exception handling and version detection,
and other core helpers that are not specific to any part of the framework.
Provides a strategy for MBeanInfo assembly.
Common infrastructure for invoking message handler methods.
Common infrastructure for invoking message handler methods with non-blocking,
and reactive contracts.
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.
Generic support classes for handler method processing.
Infrastructure for handler method processing.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package.-
Uses of ParameterNameDiscoverer in org.springframework.aop.aspectj
Classes in org.springframework.aop.aspectj that implement ParameterNameDiscovererModifier and TypeClassDescriptionclassParameterNameDiscovererimplementation 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 ParameterNameDiscovererModifier and TypeMethodDescriptionprotected 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 ParameterNameDiscovererModifier and TypeFieldDescriptionprotected final ParameterNameDiscovererAbstractAspectJAdvisorFactory.parameterNameDiscoverer -
Uses of ParameterNameDiscoverer in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config with parameters of type ParameterNameDiscovererModifier and TypeMethodDescriptionvoidDependencyDescriptor.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 ParameterNameDiscovererModifier and TypeMethodDescriptionAbstractAutowireCapableBeanFactory.getParameterNameDiscoverer()Return the ParameterNameDiscoverer to use for resolving method parameter names if needed.Methods in org.springframework.beans.factory.support with parameters of type ParameterNameDiscovererModifier and TypeMethodDescriptionvoidAbstractAutowireCapableBeanFactory.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 ParameterNameDiscovererModifier and TypeMethodDescriptionprotected ParameterNameDiscovererCachedExpressionEvaluator.getParameterNameDiscoverer()Return a shared parameter name discoverer which caches data internally.Constructors in org.springframework.context.expression with parameters of type ParameterNameDiscovererModifierConstructorDescriptionMethodBasedEvaluationContext(Object rootObject, Method method, Object[] arguments, ParameterNameDiscoverer parameterNameDiscoverer) -
Uses of ParameterNameDiscoverer in org.springframework.core
Classes in org.springframework.core that implement ParameterNameDiscovererModifier and TypeClassDescriptionclassDefault 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.classParameterNameDiscovererimplementation which uses Kotlin's reflection facilities for introspecting parameter names.classImplementation ofParameterNameDiscovererthat uses the LocalVariableTable information in the method attributes to discover parameter names.classParameterNameDiscovererimplementation that tries several discoverer delegates in succession.classParameterNameDiscovererimplementation 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 ParameterNameDiscovererModifier and TypeMethodDescriptionvoidPrioritizedParameterNameDiscoverer.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 ParameterNameDiscovererModifier and TypeMethodDescriptionprotected 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 ParameterNameDiscovererModifier and TypeMethodDescriptionvoidAbstractReflectiveMBeanInfoAssembler.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 ParameterNameDiscovererModifier and TypeMethodDescriptionvoidInvocableHandlerMethod.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 ParameterNameDiscovererModifier and TypeMethodDescriptionInvocableHandlerMethod.getParameterNameDiscoverer()Return the configured parameter name discoverer.Methods in org.springframework.messaging.handler.invocation.reactive with parameters of type ParameterNameDiscovererModifier and TypeMethodDescriptionvoidInvocableHandlerMethod.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 ParameterNameDiscovererModifier and TypeMethodDescriptionvoidLocalValidatorFactoryBean.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 ParameterNameDiscovererModifier and TypeMethodDescriptionvoidInvocableHandlerMethod.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 ParameterNameDiscovererModifier and TypeMethodDescriptionInvocableHandlerMethod.getParameterNameDiscoverer()Return the configured parameter name discoverer.SyncInvocableHandlerMethod.getParameterNameDiscoverer()Return the configured parameter name discoverer.Methods in org.springframework.web.reactive.result.method with parameters of type ParameterNameDiscovererModifier and TypeMethodDescriptionvoidInvocableHandlerMethod.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 ParameterNameDiscovererModifier and TypeMethodDescriptionvoidRequestMappingHandlerAdapter.setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer) Set the ParameterNameDiscoverer to use for resolving method parameter names if needed (e.g.