Uses of Class
org.springframework.beans.MutablePropertyValues
Packages that use MutablePropertyValues
Package
Description
This package contains interfaces and classes for manipulating Java beans.
SPI interfaces and configuration-related convenience classes for bean factories.
Classes supporting the
org.springframework.beans.factory package.Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Provides data binding and validation functionality,
for usage in business and/or UI layers.
Provides web-specific data binding functionality.
Support classes for the multipart resolution framework.
Support classes for Spring's web MVC framework.
-
Uses of MutablePropertyValues in org.springframework.beans
Methods in org.springframework.beans that return MutablePropertyValuesModifier and TypeMethodDescriptionAdd a PropertyValue object, replacing any existing one for the corresponding property or getting merged with it (if applicable).MutablePropertyValues.addPropertyValue(PropertyValue pv) Add a PropertyValue object, replacing any existing one for the corresponding property or getting merged with it (if applicable).MutablePropertyValues.addPropertyValues(@Nullable Map<?, ?> other) Add all property values from the given Map.MutablePropertyValues.addPropertyValues(@Nullable PropertyValues other) Copy all given PropertyValues into this object. -
Uses of MutablePropertyValues in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config that return MutablePropertyValuesModifier and TypeMethodDescriptionBeanDefinition.getPropertyValues()Return the property values to be applied to a new instance of the bean.Methods in org.springframework.beans.factory.config with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionprotected voidBeanDefinitionVisitor.visitPropertyValues(MutablePropertyValues pvs) -
Uses of MutablePropertyValues in org.springframework.beans.factory.support
Methods in org.springframework.beans.factory.support that return MutablePropertyValuesModifier and TypeMethodDescriptionAbstractBeanDefinition.getPropertyValues()Return the property values to be applied to a new instance of the bean.Methods in org.springframework.beans.factory.support with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionprotected voidAbstractAutowireCapableBeanFactory.autowireByName(String beanName, AbstractBeanDefinition mbd, BeanWrapper bw, MutablePropertyValues pvs) Fill in any missing property values with references to other beans in this factory if autowire is set to "byName".protected voidAbstractAutowireCapableBeanFactory.autowireByType(String beanName, AbstractBeanDefinition mbd, BeanWrapper bw, MutablePropertyValues pvs) Abstract method defining "autowire by type" (bean properties by type) behavior.voidAbstractBeanDefinition.setPropertyValues(MutablePropertyValues propertyValues) Specify property values for this bean, if any.Constructors in org.springframework.beans.factory.support with parameters of type MutablePropertyValuesModifierConstructorDescriptionprotectedAbstractBeanDefinition(@Nullable ConstructorArgumentValues cargs, @Nullable MutablePropertyValues pvs) Create a new AbstractBeanDefinition with the given constructor argument values and property values.ChildBeanDefinition(String parentName, Class<?> beanClass, ConstructorArgumentValues cargs, MutablePropertyValues pvs) Create a new ChildBeanDefinition for the given parent, providing constructor arguments and property values.ChildBeanDefinition(String parentName, String beanClassName, ConstructorArgumentValues cargs, MutablePropertyValues pvs) Create a new ChildBeanDefinition for the given parent, providing constructor arguments and property values.ChildBeanDefinition(String parentName, ConstructorArgumentValues cargs, MutablePropertyValues pvs) Create a new ChildBeanDefinition for the given parent.ChildBeanDefinition(String parentName, MutablePropertyValues pvs) Create a new ChildBeanDefinition for the given parent.RootBeanDefinition(@Nullable Class<?> beanClass, @Nullable ConstructorArgumentValues cargs, @Nullable MutablePropertyValues pvs) Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values.RootBeanDefinition(String beanClassName, ConstructorArgumentValues cargs, MutablePropertyValues pvs) Create a new RootBeanDefinition for a singleton, providing constructor arguments and property values. -
Uses of MutablePropertyValues in org.springframework.context.support
Methods in org.springframework.context.support with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionvoidStaticApplicationContext.registerPrototype(String name, Class<?> clazz, MutablePropertyValues pvs) Register a prototype bean with the underlying bean factory.voidStaticApplicationContext.registerSingleton(String name, Class<?> clazz, MutablePropertyValues pvs) Register a singleton bean with the underlying bean factory. -
Uses of MutablePropertyValues in org.springframework.validation
Methods in org.springframework.validation with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionprotected voidDataBinder.applyPropertyValues(MutablePropertyValues mpvs) Apply given property values to the target object.protected voidDataBinder.checkAllowedFields(MutablePropertyValues mpvs) Check the given property values against the allowed fields, removing values for fields that are not allowed.protected voidDataBinder.checkRequiredFields(MutablePropertyValues mpvs) Check the given property values against the required fields, generating missing field errors where appropriate.protected voidDataBinder.doBind(MutablePropertyValues mpvs) Actual implementation of the binding process, working with the passed-in MutablePropertyValues instance. -
Uses of MutablePropertyValues in org.springframework.web.bind
Subclasses of MutablePropertyValues in org.springframework.web.bindModifier and TypeClassDescriptionclassPropertyValues implementation created from parameters in a ServletRequest.Methods in org.springframework.web.bind with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionprotected voidWebDataBinder.adaptEmptyArrayIndices(MutablePropertyValues mpvs) Check the given property values for fields that end with empty brackets ([]).protected voidServletRequestDataBinder.addBindValues(MutablePropertyValues mpvs, jakarta.servlet.ServletRequest request) Extension point that subclasses can use to add extra bind values for a request.protected voidWebDataBinder.bindMultipart(Map<String, List<MultipartFile>> multipartFiles, MutablePropertyValues mpvs) Bind all multipart files contained in the given request, if any (in case of a multipart request).protected voidWebDataBinder.checkFieldDefaults(MutablePropertyValues mpvs) Check the given property values for fields that start with the field default prefix.protected voidWebDataBinder.checkFieldMarkers(MutablePropertyValues mpvs) Check the given property values for fields that start with the field marker prefix.protected voidWebDataBinder.doBind(MutablePropertyValues mpvs) This implementation checks default fields and marker fields and then adapts empty array indices before delegating to the superclass binding process. -
Uses of MutablePropertyValues in org.springframework.web.multipart.support
Methods in org.springframework.web.multipart.support with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionstatic voidStandardServletPartUtils.bindParts(jakarta.servlet.http.HttpServletRequest request, MutablePropertyValues mpvs, boolean bindEmpty) Bind all parts from the given servlet request. -
Uses of MutablePropertyValues in org.springframework.web.servlet.support
Methods in org.springframework.web.servlet.support with parameters of type MutablePropertyValuesModifier and TypeMethodDescriptionprotected voidExtendedServletRequestDataBinder.addBindValues(MutablePropertyValues mpvs, jakarta.servlet.ServletRequest request) Merge URI variables into the property values to use for data binding.