Guest User

Untitled

a guest
Jun 24th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package com.javabycode.config;
  2.  
  3. import org.springframework.context.annotation.ComponentScan;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.web.servlet.config.annotation.EnableWebMvc;
  6. import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
  7.  
  8. @EnableWebMvc
  9. @Configuration
  10. @ComponentScan("com.javabycode")
  11. public class MyWebConfig extends WebMvcConfigurerAdapter {
  12.  
  13. }
Add Comment
Please, Sign In to add comment