Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. import org.modelmapper.ModelMapper;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4.  
  5. @Configuration
  6. public class ModelMapperBean {
  7.  
  8.     @Bean
  9.     public ModelMapper modelMapper() {
  10.         return new ModelMapper();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement