@Bean public modelmapper modelmapper () {modelmapper modelmapper = new ModelMapper (); modelmapper.getConfiguration () .SetMatchingStrategy (MatchingStrategies.strict); }

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