RootContextConfig.java 320 B

123456789101112131415
  1. package com.its.api.config;
  2. import org.modelmapper.ModelMapper;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. @Configuration
  6. public class RootContextConfig {
  7. @Bean
  8. public ModelMapper modelMapper() {
  9. return new ModelMapper();
  10. }
  11. }