Package io.dropwizard.configuration
Class DefaultConfigurationFactoryFactory<T>
java.lang.Object
io.dropwizard.configuration.DefaultConfigurationFactoryFactory<T>
- Type Parameters:
T- the type of the configuration objects to produce
- All Implemented Interfaces:
ConfigurationFactoryFactory<T>
public class DefaultConfigurationFactoryFactory<T>
extends Object
implements ConfigurationFactoryFactory<T>
The default implementation for the
ConfigurationFactoryFactory interface. An instance of this class constructs a new YamlConfigurationFactory.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected com.fasterxml.jackson.databind.ObjectMapperconfigureObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper) Provides additional configuration for theObjectMapperused to read the configuration.create(Class<T> klass, jakarta.validation.Validator validator, com.fasterxml.jackson.databind.ObjectMapper objectMapper, String propertyPrefix) Creates a new configuration factory for the given class.
-
Constructor Details
-
DefaultConfigurationFactoryFactory
public DefaultConfigurationFactoryFactory()
-
-
Method Details
-
create
public ConfigurationFactory<T> create(Class<T> klass, jakarta.validation.Validator validator, com.fasterxml.jackson.databind.ObjectMapper objectMapper, String propertyPrefix) Description copied from interface:ConfigurationFactoryFactoryCreates a new configuration factory for the given class.- Specified by:
createin interfaceConfigurationFactoryFactory<T>- Parameters:
klass- the configuration classvalidator- the validator to useobjectMapper- the JacksonObjectMapperto usepropertyPrefix- the system property name prefix used by overrides- Returns:
- the new configuration factory
-
configureObjectMapper
protected com.fasterxml.jackson.databind.ObjectMapper configureObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper) Provides additional configuration for theObjectMapperused to read the configuration. By defaultDeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIESis enabled to protect against misconfiguration.- Parameters:
objectMapper- template to be configured- Returns:
- configured object mapper
-