@Bean public modelMapper modelMapper () {modelMapper modelMapper = new ModelMapper (); modelMapper.getConfiguration () .setMatchingStrategy (MatchingsStrategies.strict); }

@Bean
public ModelMapper modelMapper() {
    ModelMapper modelMapper = new ModelMapper();
    modelMapper.getConfiguration()
        .setMatchingStrategy(MatchingStrategies.STRICT);
}
Bad Beaver