Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 3.11 KB

README.md

File metadata and controls

51 lines (40 loc) · 3.11 KB

Build Status Codacy Badge BCH compliance codecov Maven Central Javadocs Apache 2

BeanMapper Spring Boot Starter

Spring boot starter/autoconfig project for Beanmapper

Features

Auto-configures a BeamMapper instance and adds it as a spring bean to the ApplicationContext. All custom implementations of BeanConverter found in the application's packages are instantiated and added to the BeanMapper.
A MergedFormMethodArgumentResolver is instantiated and added to the already configured Spring MVC argument resolvers.

Usage

Add this maven dependency to your project and you can start wiring the BeanMapper instance:

<dependency>
    <groupId>io.beanmapper</groupId>
    <artifactId>beanmapper-spring-boot-starter</artifactId>
    <version>4.1.1</version>
</dependency>

Customization

  1. By default, the package of the @SpringBootApplication annotated class will be used as root where BeanMapper will look for classes to convert and where it will search for implementors of BeanConverter to instantiate and configure. If you want to override this package, add the beanmapper.package-prefix=<custom-root-package> property to the application environment.
  2. If you do not want to make use of the HibernateAwareUnproxy feature, add beanmapper.use-hibernate-unproxy=false to the application environment.
  3. If you want full control over the BeanMapper configuration, add a bean of type BeanMapperBuilderCustomizer to the application context:
@Bean
public BeanMapperBuilderCustomizer beanMapperCustomizer() {
    return builder -> {
        // After the autoconfiguration is done with the BeanMapperBuilder,
        // control over this builder is passed to this callback just before build()
        // is called to create the BeanMapper.
    };
}